2021-06-15 16:16:32 +03:00
|
|
|
serenity_component(
|
|
|
|
FontEditor
|
|
|
|
RECOMMENDED
|
|
|
|
TARGETS FontEditor
|
|
|
|
)
|
|
|
|
|
2020-05-06 18:40:06 +03:00
|
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
2021-04-06 19:04:21 +03:00
|
|
|
compile_gml(FontEditorWindow.gml FontEditorWindowGML.h font_editor_window_gml)
|
2022-07-05 05:41:05 +03:00
|
|
|
compile_gml(FontPreviewWindow.gml FontPreviewWindowGML.h font_preview_window_gml)
|
2021-04-10 20:47:23 +03:00
|
|
|
compile_gml(NewFontDialogPage1.gml NewFontDialogPage1GML.h new_font_dialog_page_1_gml)
|
|
|
|
compile_gml(NewFontDialogPage2.gml NewFontDialogPage2GML.h new_font_dialog_page_2_gml)
|
2020-05-06 18:40:06 +03:00
|
|
|
|
|
|
|
set(SOURCES
|
|
|
|
FontEditor.cpp
|
2021-04-06 19:04:21 +03:00
|
|
|
FontEditorWindowGML.h
|
2022-07-05 05:41:05 +03:00
|
|
|
FontPreviewWindowGML.h
|
2020-05-06 18:40:06 +03:00
|
|
|
GlyphEditorWidget.cpp
|
|
|
|
main.cpp
|
2021-04-10 20:47:23 +03:00
|
|
|
NewFontDialog.cpp
|
|
|
|
NewFontDialogPage1GML.h
|
|
|
|
NewFontDialogPage2GML.h
|
2022-03-17 15:56:02 +03:00
|
|
|
UndoSelection.h
|
2020-05-06 18:40:06 +03:00
|
|
|
)
|
|
|
|
|
2020-12-20 21:26:09 +03:00
|
|
|
serenity_app(FontEditor ICON app-font-editor)
|
2021-11-24 01:51:24 +03:00
|
|
|
target_link_libraries(FontEditor LibGUI LibDesktop LibGfx LibMain)
|
2021-12-29 21:10:12 +03:00
|
|
|
link_with_unicode_data(FontEditor)
|