mirror of
https://github.com/usatiuk/cardboy.git
synced 2025-10-28 15:17:48 +01:00
17 lines
341 B
CMake
17 lines
341 B
CMake
add_executable(cardboy_desktop
|
|
src/main.cpp
|
|
)
|
|
|
|
set_target_properties(cardboy_desktop PROPERTIES
|
|
EXPORT_NAME desktop_launcher
|
|
)
|
|
|
|
target_link_libraries(cardboy_desktop
|
|
PRIVATE
|
|
cardboy_apps
|
|
cardboy_sdk
|
|
${CARDBOY_SDK_BACKEND_LIBRARY}
|
|
)
|
|
|
|
target_compile_features(cardboy_desktop PRIVATE cxx_std_20)
|