mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:37:34 +00:00
17 lines
415 B
CMake
17 lines
415 B
CMake
serenity_component(
|
|
Minesweeper
|
|
RECOMMENDED
|
|
TARGETS Minesweeper
|
|
)
|
|
|
|
compile_gml(MinesweeperCustomGameWindow.gml MinesweeperCustomGameWindowGML.h minesweeper_custom_game_window_gml)
|
|
|
|
set(SOURCES
|
|
MinesweeperCustomGameWindowGML.h
|
|
CustomGameDialog.cpp
|
|
Field.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_app(Minesweeper ICON app-minesweeper)
|
|
target_link_libraries(Minesweeper LibGUI LibConfig LibMain LibDesktop)
|