mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
1e67435ff5
This is what this function really does, it doesn't compile anything.
18 lines
435 B
CMake
18 lines
435 B
CMake
serenity_component(
|
|
PartitionEditor
|
|
TARGETS PartitionEditor
|
|
)
|
|
|
|
stringify_gml(PartitionEditorWindow.gml PartitionEditorWindowGML.h partition_editor_window_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
PartitionModel.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
PartitionEditorWindowGML.h
|
|
)
|
|
|
|
serenity_app(PartitionEditor ICON app-partition-editor)
|
|
target_link_libraries(PartitionEditor PRIVATE LibCore LibFileSystem LibGfx LibMain LibGUI LibPartition)
|