1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 10:57:36 +00:00

Solitaire: Move cards functionality into LibCards

This commit is contained in:
Gunnar Beutner 2021-05-20 13:01:14 +02:00 committed by Andreas Kling
parent 9440a3c280
commit 3e47eec862
9 changed files with 32 additions and 23 deletions

View file

@ -0,0 +1,7 @@
set(SOURCES
Card.cpp
CardStack.cpp
)
serenity_lib(LibCards cards)
target_link_libraries(LibCards LibC LibCore)