update xmake.lua (#274)

This commit is contained in:
Cyano Hao 2024-03-14 08:27:57 +08:00 committed by GitHub
parent f91c2bb188
commit b5e63e3719
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 3 deletions

View File

@ -34,7 +34,6 @@ target("RedPandaIDE")
"autolinkmanager.cpp",
"colorscheme.cpp",
"customfileiconprovider.cpp",
"gdbmiresultparser.cpp",
"main.cpp",
"projectoptions.cpp",
"settings.cpp",
@ -44,6 +43,9 @@ target("RedPandaIDE")
"visithistorymanager.cpp",
-- compiler
"compiler/compilerinfo.cpp",
-- debugger
"debugger/dapprotocol.cpp",
"debugger/gdbmiresultparser.cpp",
-- parser
"parser/cpppreprocessor.cpp",
"parser/cpptokenizer.cpp",
@ -60,7 +62,6 @@ target("RedPandaIDE")
"caretlist",
"codesnippetsmanager",
"cpprefacter",
"debugger",
"editor",
"editorlist",
"iconsmanager",
@ -80,6 +81,10 @@ target("RedPandaIDE")
"compiler/projectcompiler",
"compiler/runner",
"compiler/stdincompiler",
-- debugger
"debugger/dapdebugger",
"debugger/debugger",
"debugger/gdbmidebugger",
-- parser
"parser/cppparser",
"parser/statementmodel",
@ -93,7 +98,6 @@ target("RedPandaIDE")
"widgets/codecompletionpopup",
"widgets/coloredit",
"widgets/compileargumentswidget",
"widgets/consolewidget",
"widgets/customdisablediconengine",
"widgets/customfilesystemmodel",
"widgets/darkfusionstyle",