mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 11:37:16 +02:00
Currently, LibUnicodeData contains the generated UCD and CLDR data. Move the UCD data to the main LibUnicode library, and rename LibUnicodeData to LibLocaleData. This is another prepatory change to migrate to LibLocale.
27 lines
810 B
CMake
27 lines
810 B
CMake
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
|
|
MainWidget.cpp
|
|
FontEditorWindowGML.h
|
|
FontPreviewWindowGML.h
|
|
GlyphEditorWidget.cpp
|
|
main.cpp
|
|
NewFontDialog.cpp
|
|
NewFontDialogPage1GML.h
|
|
NewFontDialogPage2GML.h
|
|
UndoSelection.h
|
|
)
|
|
|
|
serenity_app(FontEditor ICON app-font-editor)
|
|
target_link_libraries(FontEditor LibGUI LibDesktop LibGfx LibMain LibUnicode)
|