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-20 20:56:02 +03:00
|
|
|
AutoCompleteBox.cpp
|
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 04:36:55 +01:00
|
|
|
Debugger/DisassemblyModel.cpp
|
|
|
|
Debugger/DisassemblyWidget.cpp
|
2020-08-25 04:39:29 +01: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 03:01:33 +03:30
|
|
|
LanguageClient.cpp
|
2020-05-06 18:40:06 +03:00
|
|
|
Locator.cpp
|
|
|
|
ProcessStateWidget.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
|
|
|
)
|
|
|
|
|
|
|
|
serenity_bin(HackStudio)
|
2020-09-28 14:28:44 +03:30
|
|
|
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)
|