Files
ladybird/Applications/TextEditor/CMakeLists.txt
Andreas Kling f67c876df0 Build+TextEditor: Add a compile_json_gui() CMake helper
This makes it easier to include JSON GUI declarations in any app. :^)
2020-09-14 16:16:36 +02:00

11 lines
238 B
CMake

compile_json_gui(MainWindow.json MainWindowUI.h main_window_ui_json)
set(SOURCES
main.cpp
TextEditorWidget.cpp
MainWindowUI.h
)
serenity_bin(TextEditor)
target_link_libraries(TextEditor LibWeb LibMarkdown LibGUI LibDesktop)