blob: 2785306b9fb32207e321e2603b4d00fe6bbc1918 [file] [log] [blame]
Brad Bishopb4459912019-11-05 19:39:11 -05001gtest = dependency('gtest', main: true, disabler: true, required: build_tests)
2
3test(
4 'test_entity_manager',
5 executable(
6 'test_entity_manager',
7 'test_entity-manager.cpp',
8 '../src/Utils.cpp',
9 cpp_args: boost_args + ['-DBOOST_ASIO_DISABLE_THREADS'],
10 dependencies: [
11 boost,
12 gtest,
13 sdbusplus,
14 ],
15 implicit_include_directories: false,
16 include_directories: '../include',
17 )
18)