blob: 54548126063a721968994561bf5e473f0cecca71 [file] [log] [blame]
Lei YU14ef8742023-10-07 17:50:28 +08001gtest = dependency('gtest', main: true, disabler: true, required: build_tests)
2gmock = dependency('gmock', disabler: true, required: build_tests)
3test_inc = include_directories('.')
4src_inc = include_directories('..')
5
6common_dep = [
7 gtest,
8 gmock,
9]
10
11test_exprtk_tools = executable(
12 'test_exprtk_tools',
13 'test_exprtk_tools.cpp',
14 include_directories: [test_inc, src_inc],
15 dependencies: [common_dep, exprtk]
16)
17
18test('test_exprtk_tools', test_exprtk_tools)