blob: e8683d3fe614280df1bff8b28be8408a38735249 [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,
Brad Bishopff1ddb72020-01-15 12:24:56 -050015 valijson,
Brad Bishopb4459912019-11-05 19:39:11 -050016 ],
17 implicit_include_directories: false,
18 include_directories: '../include',
19 )
20)