12345678910111213141516171819 |
- # Convenience library for the duplicated logging functionality
- common_sources = [
- 'common-logging.c',
- 'common-governors.c',
- 'common-external.c',
- 'common-helpers.c',
- 'common-gpu.c',
- ]
- daemon_common = static_library(
- 'daemon-common',
- sources: common_sources,
- install: false,
- )
- link_daemon_common = declare_dependency(
- link_with: daemon_common,
- include_directories: [include_directories('.')]
- )
|