2020-09-28 16:37:37 +03:00
|
|
|
add_subdirectory(LanguageServers)
|
|
|
|
add_subdirectory(LanguageClients)
|
|
|
|
|
2020-05-06 18:40:06 +03:00
|
|
|
set(SOURCES
|
2020-09-19 17:25:05 +03:00
|
|
|
CodeDocument.cpp
|
2020-05-06 18:40:06 +03:00
|
|
|
CursorTool.cpp
|
|
|
|
Debugger/BacktraceModel.cpp
|
|
|
|
Debugger/DebugInfoWidget.cpp
|
2020-09-19 17:25:05 +03:00
|
|
|
Debugger/Debugger.cpp
|
2020-08-25 06:36:55 +03:00
|
|
|
Debugger/DisassemblyModel.cpp
|
|
|
|
Debugger/DisassemblyWidget.cpp
|
2020-08-25 06:39:29 +03:00
|
|
|
Debugger/RegistersModel.cpp
|
2020-05-06 18:40:06 +03:00
|
|
|
Debugger/VariablesModel.cpp
|
|
|
|
Editor.cpp
|
|
|
|
EditorWrapper.cpp
|
|
|
|
FindInFilesWidget.cpp
|
|
|
|
FormEditorWidget.cpp
|
|
|
|
FormWidget.cpp
|
2020-09-19 17:25:05 +03:00
|
|
|
Git/DiffViewer.cpp
|
|
|
|
Git/GitFilesModel.cpp
|
|
|
|
Git/GitFilesView.cpp
|
|
|
|
Git/GitRepo.cpp
|
|
|
|
Git/GitWidget.cpp
|
|
|
|
HackStudioWidget.cpp
|
2020-10-02 02:31:33 +03:00
|
|
|
LanguageClient.cpp
|
2020-05-06 18:40:06 +03:00
|
|
|
Locator.cpp
|
|
|
|
Project.cpp
|
|
|
|
ProjectFile.cpp
|
|
|
|
TerminalWrapper.cpp
|
|
|
|
WidgetTool.cpp
|
|
|
|
WidgetTreeModel.cpp
|
2020-09-19 17:25:05 +03:00
|
|
|
main.cpp
|
2020-05-06 18:40:06 +03:00
|
|
|
)
|
|
|
|
|
2020-12-20 21:26:09 +03:00
|
|
|
serenity_app(HackStudio ICON app-hack-studio)
|
2020-09-28 13:58:44 +03:00
|
|
|
target_link_libraries(HackStudio LibWeb LibMarkdown LibGUI LibGfx LibCore LibVT LibDebug LibX86 LibDiff LibShell)
|
2020-09-28 16:37:37 +03:00
|
|
|
add_dependencies(HackStudio CppLanguageServer)
|