mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
05913b853a
This adds a tab for configuring the appearance of Chess, along with a preview.
22 lines
561 B
CMake
22 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)
|