summaryrefslogtreecommitdiff
path: root/Userland/Applications/TextEditor/CMakeLists.txt
blob: 8d2993c363b2ad0f64ba05ebd3e5b1d193c16f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 LibWeb LibMarkdown LibGUI LibShell LibRegex LibDesktop LibCpp LibJS LibSQL LibFileSystemAccessClient LibConfig)