mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 16:15:08 +00:00
16 lines
284 B
CMake
16 lines
284 B
CMake
serenity_component(
|
|
Chess
|
|
RECOMMENDED
|
|
TARGETS Chess
|
|
DEPENDS ChessEngine
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
ChessWidget.cpp
|
|
PromotionDialog.cpp
|
|
Engine.cpp
|
|
)
|
|
|
|
serenity_app(Chess ICON app-chess)
|
|
target_link_libraries(Chess LibChess LibConfig LibGUI LibCore LibMain)
|