mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 16:37:47 +00:00
Userland: Properly populate GENERATED_SOURCES
We previously put the generated headers in SOURCES, which did not mark them as GENERATED (and did not produce a proper dependency). This commit moves all generated headers into GENERATED_SOURCES, and removes useless header SOURCES.
This commit is contained in:
parent
c88058cea2
commit
166a905951
54 changed files with 236 additions and 97 deletions
|
@ -23,15 +23,12 @@ set(SOURCES
|
|||
Debugger/RegistersModel.cpp
|
||||
Debugger/VariablesModel.cpp
|
||||
Dialogs/Git/GitCommitDialog.cpp
|
||||
Dialogs/Git/GitCommitDialogGML.h
|
||||
Dialogs/NewProjectDialog.cpp
|
||||
Dialogs/NewProjectDialogGML.h
|
||||
Dialogs/ProjectTemplatesModel.cpp
|
||||
Editor.cpp
|
||||
EditorWrapper.cpp
|
||||
FindInFilesWidget.cpp
|
||||
FindWidget.cpp
|
||||
FindWidgetGML.h
|
||||
Git/DiffViewer.cpp
|
||||
Git/GitFilesModel.cpp
|
||||
Git/GitFilesView.cpp
|
||||
|
@ -54,6 +51,12 @@ set(SOURCES
|
|||
main.cpp
|
||||
)
|
||||
|
||||
set(GENERATED_SOURCES
|
||||
Dialogs/Git/GitCommitDialogGML.h
|
||||
Dialogs/NewProjectDialogGML.h
|
||||
FindWidgetGML.h
|
||||
)
|
||||
|
||||
serenity_app(HackStudio ICON app-hack-studio)
|
||||
target_link_libraries(HackStudio LibWebView LibWeb LibMarkdown LibGUI LibCpp LibGfx LibCore LibVT LibDebug LibX86 LibDiff LibShell LibSymbolication LibRegex LibSQL LibCoredump LibMain)
|
||||
add_dependencies(HackStudio CppLanguageServer)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue