2016-03-26 04:26:51 +00:00
|
|
|
|
|
|
|
add_executable(cardtest
|
|
|
|
main.cpp)
|
|
|
|
|
2018-02-15 17:22:37 +00:00
|
|
|
set(PLAT_LIBS)
|
|
|
|
if (UNIX AND NOT APPLE)
|
|
|
|
list(APPEND PLAT_LIBS rt)
|
|
|
|
endif()
|
|
|
|
|
2016-03-26 04:26:51 +00:00
|
|
|
target_link_libraries(cardtest
|
2018-02-15 17:22:37 +00:00
|
|
|
kabufuda ${PLAT_LIBS})
|