blob: 7462334871912fd1dc81b1e8b38c36ef9a7fa4eb [file] [log] [blame]
gtest = dependency(
'gtest',
main: true,
disabler: true,
required: get_option('tests'),
)
gmock = dependency('gmock', disabler: true, required: get_option('tests'))
if not gtest.found() or not gmock.found()
gtest_proj = import('cmake').subproject('googletest', required: false)
if gtest_proj.found()
gtest = declare_dependency(
dependencies: [
gtest_proj.dependency('gtest'),
gtest_proj.dependency('gtest_main'),
],
)
gmock = gtest_proj.dependency('gmock')
else
assert(not get_option('tests').allowed(), 'Googletest is required')
endif
endif
gtests = [
'bej_decoder',
'bej_common',
'bej_dictionary',
'bej_tree',
'bej_encoder',
]
nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system')
libbej_test_incs = include_directories('include')
foreach t : gtests
test(
t,
executable(
t.underscorify(),
t + '_test.cpp',
build_by_default: false,
implicit_include_directories: false,
include_directories: libbej_test_incs,
dependencies: [libbej, gtest, gmock, nlohmann_json_dep],
),
)
endforeach