ladybird/Userland/Games/Chess/CMakeLists.txt
Pedro Pereira 55db1811c7 Chess: Port to LibMain
Simplified two pledge() and five unveil() by using TRY().
2021-11-22 23:55:42 +01:00

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)