mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:58:11 +00:00
22 lines
565 B
CMake
22 lines
565 B
CMake
serenity_component(
|
|
GamesSettings
|
|
REQUIRED
|
|
TARGETS GamesSettings
|
|
)
|
|
|
|
stringify_gml(CardSettingsWidget.gml CardSettingsWidgetGML.h card_settings_widget_gml)
|
|
stringify_gml(ChessSettingsWidget.gml ChessSettingsWidgetGML.h chess_settings_widget_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
CardSettingsWidget.cpp
|
|
ChessSettingsWidget.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
CardSettingsWidgetGML.h
|
|
ChessSettingsWidgetGML.h
|
|
)
|
|
|
|
serenity_app(GamesSettings ICON games)
|
|
target_link_libraries(GamesSettings PRIVATE LibConfig LibCore LibGfx LibGUI LibMain LibCards LibChess)
|