1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-23 04:04:54 +08:00
serial/tests/CMakeLists.txt

12 lines
304 B
CMake
Raw Normal View History

2019-08-27 16:25:49 +07:00
cmake_minimum_required(VERSION 3.0)
project(serial-testsuite VERSION 1.0)
2019-08-27 16:25:49 +07:00
file(GLOB TEST_SRCS unit/unix_timer_tests.cc)
if (UNIX)
if (NOT APPLE)
add_executable(service_testsuite ${TEST_SRCS})
target_link_libraries(service_testsuite PUBLIC serial ${MAIN_LIBS})
endif ()
endif ()