mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
631d36fd98
This adds component declarations so that users can select to not build certain parts of the OS.
16 lines
299 B
CMake
16 lines
299 B
CMake
serenity_component(
|
|
Solitaire
|
|
RECOMMENDED
|
|
TARGETS Solitaire
|
|
)
|
|
|
|
compile_gml(Solitaire.gml SolitaireGML.h solitaire_gml)
|
|
|
|
set(SOURCES
|
|
Game.cpp
|
|
main.cpp
|
|
SolitaireGML.h
|
|
)
|
|
|
|
serenity_app(Solitaire ICON app-solitaire)
|
|
target_link_libraries(Solitaire LibCards LibGUI LibGfx LibCore)
|