pacman/lcd/test/CMakeLists.txt

10 lines
254 B
Text
Raw Normal View History

2020-11-29 16:42:03 +00:00
enable_testing()
find_package(GTest REQUIRED)
include(GoogleTest)
2020-11-29 18:11:19 +00:00
add_executable(lcd_tests lcd_tests.cpp)
2020-11-29 16:42:03 +00:00
target_link_libraries(lcd_tests GTest::GTest liblcd)
gtest_discover_tests(lcd_tests TEST_PREFIX lcd:)
add_test(NAME monolithic COMMAND lcd_tests)