blob: 83bab5325d428a9c15962d7e7e697c1bb88d66ef [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,
Brad Bishop79a09a82020-01-15 12:23:07 -050013 nlohmann_json,
Brad Bishopb4459912019-11-05 19:39:11 -050014 sdbusplus,
15 ],
16 implicit_include_directories: false,
17 include_directories: '../include',
18 )
19)