1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-23 04:04:54 +08:00
serial/tests/CMakeLists.txt
Ivan Kishchenko 1b55729229 remove catkin
2019-08-27 16:25:49 +07:00

12 lines
304 B
CMake

cmake_minimum_required(VERSION 3.0)
project(serial-testsuite VERSION 1.0)
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 ()