mirror of https://github.com/AxioDL/kabufuda.git
Fix linux build
This commit is contained in:
parent
a4045a7764
commit
0c012a3776
|
@ -2,5 +2,10 @@
|
|||
add_executable(cardtest
|
||||
main.cpp)
|
||||
|
||||
set(PLAT_LIBS)
|
||||
if (UNIX AND NOT APPLE)
|
||||
list(APPEND PLAT_LIBS rt)
|
||||
endif()
|
||||
|
||||
target_link_libraries(cardtest
|
||||
kabufuda)
|
||||
kabufuda ${PLAT_LIBS})
|
||||
|
|
Loading…
Reference in New Issue