1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 16:17:34 +00:00
serenity/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

10 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)