8 lines
222 B
CMake
Raw Normal View History

2023-11-25 10:16:48 +02:00
if (WHISPER_SDL2)
set(TARGET wchess)
add_executable(${TARGET} wchess.cmd.cpp)
include(DefaultTargetOptions)
2023-11-25 11:34:06 +02:00
target_link_libraries(${TARGET} PRIVATE libwchess common-sdl ${CMAKE_THREAD_LIBS_INIT})
2023-11-25 10:16:48 +02:00
endif ()