blob: 50eaf0e388aa0dca446fe1b6c7a88363a07310ea [file] [log] [blame]
gtest_dep = dependency('gtest', main: true, disabler: true, required: false)
gmock_dep = dependency('gmock', disabler: true, required: false)
if not gtest_dep.found() or not gmock_dep.found()
gtest_proj = import('cmake').subproject('googletest', required: false)
if gtest_proj.found()
gtest_dep = declare_dependency(
dependencies: [
dependency('threads'),
gtest_proj.dependency('gtest'),
gtest_proj.dependency('gtest_main'),
]
)
gmock_dep = gtest_proj.dependency('gmock')
else
assert(
not get_option('tests').enabled(),
'Googletest is required if tests are enabled'
)
endif
endif
have_boost_dbus = meson.get_compiler('cpp').has_header('dbus/connection.hpp')
if have_boost_dbus
test(
'test_hwmon_temp_sensor',
executable(
'test_hwmon_temp_sensor',
'test_HwmonTempSensor.cpp',
dependencies: [
gtest,
boost_dbus,
],
implicit_include_directories: false,
include_directories: '../include',
)
)
test(
'test_tach_sensor',
executable(
'test_tach_sensor',
'test_TachSensor.cpp',
dependencies: [
gtest,
boost_dbus,
],
implicit_include_directories: false,
include_directories: '../include',
)
)
endif