mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
0ff4eec8a8
No functionial change here, but this more easily allows for adding GUI elements to the Solitaire window. This nests the SolitaireWidget as a child of the main window's widget so that the SolitaireWidget does not color the entire window green when it paints its background.
12 lines
246 B
CMake
12 lines
246 B
CMake
compile_gml(Solitaire.gml SolitaireGML.h solitaire_gml)
|
|
|
|
set(SOURCES
|
|
Card.cpp
|
|
CardStack.cpp
|
|
Game.cpp
|
|
main.cpp
|
|
SolitaireGML.h
|
|
)
|
|
|
|
serenity_app(Solitaire ICON app-solitaire)
|
|
target_link_libraries(Solitaire LibGUI LibGfx LibCore)
|