1
0

meson.build 566 B

12345678910111213141516171819202122232425262728293031323334
  1. # Main client library to message the daemon
  2. shared_library(
  3. 'gamemode',
  4. sources: [
  5. 'client_impl.c',
  6. ],
  7. dependencies: [
  8. dep_systemd,
  9. ],
  10. install: true,
  11. )
  12. libgamemode_includes = [
  13. include_directories('.'),
  14. ]
  15. # Small library to automatically use gamemode
  16. shared_library(
  17. 'gamemodeauto',
  18. sources: [
  19. 'client_loader.c',
  20. ],
  21. dependencies: [
  22. libdl,
  23. ],
  24. install: true,
  25. )
  26. # Install the gamemode_client header
  27. gamemode_headers = [
  28. 'gamemode_client.h',
  29. ]
  30. install_headers(gamemode_headers)