blob: 1c0c0a4784cbf7119e1a640f65fd4ee11a63f83e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 LibGUI LibCore)
|