mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
23 lines
561 B
CMake
23 lines
561 B
CMake
serenity_component(
|
|
GamesSettings
|
|
REQUIRED
|
|
TARGETS GamesSettings
|
|
)
|
|
|
|
compile_gml(CardSettingsWidget.gml CardSettingsWidgetGML.h card_settings_widget_gml)
|
|
compile_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)
|