mirror of
https://github.com/encounter/aurora.git
synced 2025-07-31 17:35:42 +00:00
12 lines
176 B
CMake
12 lines
176 B
CMake
|
|
add_executable(cardtest
|
|
main.cpp)
|
|
|
|
set(PLAT_LIBS)
|
|
if (UNIX AND NOT APPLE)
|
|
list(APPEND PLAT_LIBS rt)
|
|
endif()
|
|
|
|
target_link_libraries(cardtest
|
|
kabufuda ${PLAT_LIBS})
|