meson.build 434 B

12345678910111213141516171819
  1. # Convenience library for the duplicated logging functionality
  2. common_sources = [
  3. 'common-logging.c',
  4. 'common-governors.c',
  5. 'common-external.c',
  6. 'common-helpers.c',
  7. 'common-gpu.c',
  8. ]
  9. daemon_common = static_library(
  10. 'daemon-common',
  11. sources: common_sources,
  12. install: false,
  13. )
  14. link_daemon_common = declare_dependency(
  15. link_with: daemon_common,
  16. include_directories: [include_directories('.')]
  17. )