mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 13:15:07 +00: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.
18 lines
534 B
CMake
18 lines
534 B
CMake
serenity_component(
|
|
TextEditor
|
|
RECOMMENDED
|
|
TARGETS TextEditor
|
|
DEPENDS ImageDecoder RequestServer WebContent FileSystemAccessServer
|
|
)
|
|
|
|
compile_gml(TextEditorWindow.gml TextEditorWindowGML.h text_editor_window_gml)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
FileArgument.cpp
|
|
MainWidget.cpp
|
|
TextEditorWindowGML.h
|
|
)
|
|
|
|
serenity_app(TextEditor ICON app-text-editor)
|
|
target_link_libraries(TextEditor LibWebView LibWeb LibMarkdown LibGUI LibShell LibRegex LibDesktop LibCpp LibJS LibSQL LibFileSystemAccessClient LibConfig LibMain)
|