1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 16:35:06 +00:00
serenity/Libraries/LibChess/CMakeLists.txt
Itamar 9a9d655abe Chess: Add LibCore as a dependency
This fixes Dynamic Loader crash because of an unresolved LibCore symbol
2020-12-14 23:05:53 +01:00

8 lines
142 B
CMake

set(SOURCES
Chess.cpp
UCICommand.cpp
UCIEndpoint.cpp
)
serenity_lib(LibChess chess)
target_link_libraries(LibChess LibC LibCore)