mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 19:19:44 +03:00
17 lines
336 B
CMake
17 lines
336 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 PRIVATE LibChess LibConfig LibFileSystemAccessClient LibGfx LibGUI LibCore LibMain LibDesktop)
|