ladybird/Userland/Applications/FontEditor/CMakeLists.txt

28 lines
834 B
CMake
Raw Normal View History

serenity_component(
FontEditor
RECOMMENDED
TARGETS FontEditor
)
include_directories(${CMAKE_CURRENT_BINARY_DIR})
compile_gml(FontEditorWindow.gml FontEditorWindowGML.h font_editor_window_gml)
compile_gml(FontPreviewWindow.gml FontPreviewWindowGML.h font_preview_window_gml)
compile_gml(NewFontDialogPage1.gml NewFontDialogPage1GML.h new_font_dialog_page_1_gml)
compile_gml(NewFontDialogPage2.gml NewFontDialogPage2GML.h new_font_dialog_page_2_gml)
set(SOURCES
FontEditor.cpp
FontEditorWindowGML.h
FontPreviewWindowGML.h
GlyphEditorWidget.cpp
main.cpp
NewFontDialog.cpp
NewFontDialogPage1GML.h
NewFontDialogPage2GML.h
UndoSelection.h
)
serenity_app(FontEditor ICON app-font-editor)
2021-11-24 01:51:24 +03:00
target_link_libraries(FontEditor LibGUI LibDesktop LibGfx LibMain)
link_with_unicode_data(FontEditor)