ladybird/Userland/Games/Chess/CMakeLists.txt
Karol Kosek 9d7345d17b Chess: Import/Export chessboards using LibFileSystemAccessClient
With this change, the wpath and cpath promises as well as unveiling
user's entire home directory are no longer needed. :^)
2022-08-08 22:03:30 -04:00

17 lines
321 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 LibFileSystemAccessClient LibGUI LibCore LibMain LibDesktop)