31 lines
791 B
CMake
31 lines
791 B
CMake
# Optional unit test
|
|
|
|
find_package(Boost COMPONENTS unit_test_framework)
|
|
|
|
if(Boost_UNIT_TEST_FRAMEWORK_FOUND)
|
|
|
|
message(STATUS "Building unit test")
|
|
|
|
enable_testing()
|
|
|
|
INCLUDE_DIRECTORIES(BEFORE ${CMAKE_SOURCE_DIR}/src ${Boost_INCLUDE_DIRS})
|
|
|
|
set(cpp_tests
|
|
basic.cpp
|
|
baudrate.cpp
|
|
)
|
|
|
|
add_executable(test_libftdi ${cpp_tests})
|
|
target_link_libraries(test_libftdi ftdi ${Boost_UNIT_TEST_FRAMEWORK_LIBRARIES})
|
|
|
|
add_test(test_libftdi test_libftdi)
|
|
|
|
# Add custom target so we run easily run "make check"
|
|
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} DEPENDS test_libftdi)
|
|
|
|
else(Boost_UNIT_TEST_FRAMEWORK_FOUND)
|
|
|
|
message(STATUS "NOT building unit test (requires boost unit test framework)")
|
|
|
|
endif(Boost_UNIT_TEST_FRAMEWORK_FOUND)
|