kabufuda/test/CMakeLists.txt

12 lines
176 B
CMake
Raw Permalink Normal View History

2016-03-25 21:26:51 -07:00
add_executable(cardtest
main.cpp)
2018-02-15 09:22:37 -08:00
set(PLAT_LIBS)
if (UNIX AND NOT APPLE)
list(APPEND PLAT_LIBS rt)
endif()
2016-03-25 21:26:51 -07:00
target_link_libraries(cardtest
2018-02-15 09:22:37 -08:00
kabufuda ${PLAT_LIBS})