From 7f829b26e527595e6796cc3f102897ff8d0dbb12 Mon Sep 17 00:00:00 2001 From: Nikolai Kosjar Date: Tue, 10 Dec 2013 12:22:20 +0100 Subject: [PATCH] Clean up {classview,cppeditor,cpptools}.{pro,qbs} Mostly reordering files alphabetically. Change-Id: Ibad1fa75559218fe488d1b31c7200ba4ff6131fe Reviewed-by: Orgad Shaneh Reviewed-by: Erik Verbruggen --- src/plugins/classview/classview.pro | 32 ++--- src/plugins/classview/classview.qbs | 32 ++--- src/plugins/cppeditor/cppeditor.pro | 74 +++++----- src/plugins/cppeditor/cppeditor.qbs | 81 ++++------- src/plugins/cpptools/cpptools.pro | 211 ++++++++++++++-------------- src/plugins/cpptools/cpptools.qbs | 163 ++++++++------------- 6 files changed, 255 insertions(+), 338 deletions(-) diff --git a/src/plugins/classview/classview.pro b/src/plugins/classview/classview.pro index 86352ed98f2..a2c22df521a 100644 --- a/src/plugins/classview/classview.pro +++ b/src/plugins/classview/classview.pro @@ -1,29 +1,29 @@ include(../../qtcreatorplugin.pri) HEADERS += \ - classviewplugin.h \ - classviewnavigationwidgetfactory.h \ classviewconstants.h \ - classviewnavigationwidget.h \ - classviewparser.h \ classviewmanager.h \ - classviewsymbollocation.h \ - classviewsymbolinformation.h \ + classviewnavigationwidget.h \ + classviewnavigationwidgetfactory.h \ + classviewparser.h \ classviewparsertreeitem.h \ - classviewutils.h \ - classviewtreeitemmodel.h + classviewplugin.h \ + classviewsymbolinformation.h \ + classviewsymbollocation.h \ + classviewtreeitemmodel.h \ + classviewutils.h SOURCES += \ - classviewplugin.cpp \ - classviewnavigationwidgetfactory.cpp \ - classviewnavigationwidget.cpp \ - classviewparser.cpp \ classviewmanager.cpp \ - classviewsymbollocation.cpp \ - classviewsymbolinformation.cpp \ + classviewnavigationwidget.cpp \ + classviewnavigationwidgetfactory.cpp \ + classviewparser.cpp \ classviewparsertreeitem.cpp \ - classviewutils.cpp \ - classviewtreeitemmodel.cpp + classviewplugin.cpp \ + classviewsymbolinformation.cpp \ + classviewsymbollocation.cpp \ + classviewtreeitemmodel.cpp \ + classviewutils.cpp FORMS += \ classviewnavigationwidget.ui diff --git a/src/plugins/classview/classview.qbs b/src/plugins/classview/classview.qbs index a3699245d02..a80e8837ce1 100644 --- a/src/plugins/classview/classview.qbs +++ b/src/plugins/classview/classview.qbs @@ -12,31 +12,19 @@ QtcPlugin { Depends { name: "ProjectExplorer" } Depends { name: "TextEditor" } - files: [ "classview.qrc", "classviewconstants.h", - "classviewmanager.cpp", - "classviewmanager.h", - "classviewnavigationwidget.cpp", - "classviewnavigationwidget.h", - "classviewnavigationwidget.ui", - "classviewnavigationwidgetfactory.cpp", - "classviewnavigationwidgetfactory.h", - "classviewparser.cpp", - "classviewparser.h", - "classviewparsertreeitem.cpp", - "classviewparsertreeitem.h", - "classviewplugin.cpp", - "classviewplugin.h", - "classviewsymbolinformation.cpp", - "classviewsymbolinformation.h", - "classviewsymbollocation.cpp", - "classviewsymbollocation.h", - "classviewtreeitemmodel.cpp", - "classviewtreeitemmodel.h", - "classviewutils.cpp", - "classviewutils.h", + "classviewmanager.cpp", "classviewmanager.h", + "classviewnavigationwidget.cpp", "classviewnavigationwidget.h", "classviewnavigationwidget.ui", + "classviewnavigationwidgetfactory.cpp", "classviewnavigationwidgetfactory.h", + "classviewparser.cpp", "classviewparser.h", + "classviewparsertreeitem.cpp", "classviewparsertreeitem.h", + "classviewplugin.cpp", "classviewplugin.h", + "classviewsymbolinformation.cpp", "classviewsymbolinformation.h", + "classviewsymbollocation.cpp", "classviewsymbollocation.h", + "classviewtreeitemmodel.cpp", "classviewtreeitemmodel.h", + "classviewutils.cpp", "classviewutils.h", ] } diff --git a/src/plugins/cppeditor/cppeditor.pro b/src/plugins/cppeditor/cppeditor.pro index 6257e2c1652..1ff6f58ad0a 100644 --- a/src/plugins/cppeditor/cppeditor.pro +++ b/src/plugins/cppeditor/cppeditor.pro @@ -1,37 +1,40 @@ DEFINES += CPPEDITOR_LIBRARY include(../../qtcreatorplugin.pri) -HEADERS += cppeditorplugin.h \ + +HEADERS += \ cppautocompleter.h \ cppclasswizard.h \ + cppeditor.h \ + cppeditor_global.h \ cppeditorconstants.h \ cppeditorenums.h \ - cppeditor_global.h \ - cppeditor.h \ + cppeditorplugin.h \ cppelementevaluator.h \ cppfilewizard.h \ cppfollowsymbolundercursor.h \ cppfunctiondecldeflink.h \ - cpphighlighterfactory.h \ cpphighlighter.h \ + cpphighlighterfactory.h \ cpphoverhandler.h \ + cppincludehierarchy.h \ + cppincludehierarchyitem.h \ + cppincludehierarchymodel.h \ + cppincludehierarchytreeview.h \ cppoutline.h \ + cpppreprocessordialog.h \ + cppquickfix.h \ cppquickfixassistant.h \ cppquickfixes.h \ - cppquickfix.h \ cppsnippetprovider.h \ cpptypehierarchy.h \ - cppincludehierarchy.h \ - cppincludehierarchymodel.h \ - cppincludehierarchyitem.h \ - cppincludehierarchytreeview.h \ cppvirtualfunctionassistprovider.h \ - cppvirtualfunctionproposalitem.h \ - cpppreprocessordialog.h + cppvirtualfunctionproposalitem.h -SOURCES += cppeditorplugin.cpp \ +SOURCES += \ cppautocompleter.cpp \ cppclasswizard.cpp \ cppeditor.cpp \ + cppeditorplugin.cpp \ cppelementevaluator.cpp \ cppfilewizard.cpp \ cppfollowsymbolundercursor.cpp \ @@ -39,35 +42,36 @@ SOURCES += cppeditorplugin.cpp \ cpphighlighter.cpp \ cpphighlighterfactory.cpp \ cpphoverhandler.cpp \ + cppincludehierarchy.cpp \ + cppincludehierarchyitem.cpp \ + cppincludehierarchymodel.cpp \ + cppincludehierarchytreeview.cpp \ cppoutline.cpp \ - cppquickfixassistant.cpp \ + cpppreprocessordialog.cpp \ cppquickfix.cpp \ + cppquickfixassistant.cpp \ cppquickfixes.cpp \ cppsnippetprovider.cpp \ cpptypehierarchy.cpp \ - cppincludehierarchy.cpp \ - cppincludehierarchymodel.cpp \ - cppincludehierarchyitem.cpp \ - cppincludehierarchytreeview.cpp \ cppvirtualfunctionassistprovider.cpp \ - cppvirtualfunctionproposalitem.cpp \ - cpppreprocessordialog.cpp - -RESOURCES += cppeditor.qrc - -equals(TEST, 1) { - HEADERS += cppquickfix_test_utils.h - - SOURCES += \ - cppquickfix_test.cpp \ - cppquickfix_test_utils.cpp \ - cppdoxygen_test.cpp \ - fileandtokenactions_test.cpp \ - followsymbol_switchmethoddecldef_test.cpp \ - cppincludehierarchy_test.cpp - - DEFINES += SRCDIR=\\\"$$PWD\\\" -} + cppvirtualfunctionproposalitem.cpp FORMS += \ cpppreprocessordialog.ui + +RESOURCES += \ + cppeditor.qrc + +equals(TEST, 1) { + HEADERS += \ + cppquickfix_test_utils.h + SOURCES += \ + cppdoxygen_test.cpp \ + cppincludehierarchy_test.cpp \ + cppquickfix_test.cpp \ + cppquickfix_test_utils.cpp \ + fileandtokenactions_test.cpp \ + followsymbol_switchmethoddecldef_test.cpp + DEFINES += SRCDIR=\\\"$$PWD\\\" +} + diff --git a/src/plugins/cppeditor/cppeditor.qbs b/src/plugins/cppeditor/cppeditor.qbs index a92808d2791..25d273b1c94 100644 --- a/src/plugins/cppeditor/cppeditor.qbs +++ b/src/plugins/cppeditor/cppeditor.qbs @@ -14,59 +14,34 @@ QtcPlugin { Depends { name: "ProjectExplorer" } files: [ - "cppautocompleter.cpp", - "cppautocompleter.h", - "cppclasswizard.cpp", - "cppclasswizard.h", - "cppeditorconstants.h", - "cppeditor.cpp", - "cppeditorenums.h", - "cppeditor_global.h", - "cppeditor.h", - "cppeditorplugin.cpp", - "cppeditorplugin.h", + "cppautocompleter.cpp", "cppautocompleter.h", + "cppclasswizard.cpp", "cppclasswizard.h", + "cppeditor.cpp", "cppeditor.h", "cppeditor.qrc", - "cppelementevaluator.cpp", - "cppelementevaluator.h", - "cppfilewizard.cpp", - "cppfilewizard.h", - "cppfollowsymbolundercursor.cpp", - "cppfollowsymbolundercursor.h", - "cppfunctiondecldeflink.cpp", - "cppfunctiondecldeflink.h", - "cpphighlighter.cpp", - "cpphighlighterfactory.cpp", - "cpphighlighterfactory.h", - "cpphighlighter.h", - "cpphoverhandler.cpp", - "cpphoverhandler.h", - "cppincludehierarchy.cpp", - "cppincludehierarchy.h", - "cppincludehierarchyitem.cpp", - "cppincludehierarchyitem.h", - "cppincludehierarchymodel.cpp", - "cppincludehierarchymodel.h", - "cppincludehierarchytreeview.cpp", - "cppincludehierarchytreeview.h", - "cppoutline.cpp", - "cppoutline.h", - "cpppreprocessordialog.cpp", - "cpppreprocessordialog.h", - "cpppreprocessordialog.ui", - "cppquickfixassistant.cpp", - "cppquickfixassistant.h", - "cppquickfix.cpp", - "cppquickfixes.cpp", - "cppquickfixes.h", - "cppquickfix.h", - "cppsnippetprovider.cpp", - "cppsnippetprovider.h", - "cpptypehierarchy.cpp", - "cpptypehierarchy.h", - "cppvirtualfunctionassistprovider.cpp", - "cppvirtualfunctionassistprovider.h", - "cppvirtualfunctionproposalitem.cpp", - "cppvirtualfunctionproposalitem.h", + "cppeditor_global.h", + "cppeditorconstants.h", + "cppeditorenums.h", + "cppeditorplugin.cpp", "cppeditorplugin.h", + "cppelementevaluator.cpp", "cppelementevaluator.h", + "cppfilewizard.cpp", "cppfilewizard.h", + "cppfollowsymbolundercursor.cpp", "cppfollowsymbolundercursor.h", + "cppfunctiondecldeflink.cpp", "cppfunctiondecldeflink.h", + "cpphighlighter.cpp", "cpphighlighter.h", + "cpphighlighterfactory.cpp", "cpphighlighterfactory.h", + "cpphoverhandler.cpp", "cpphoverhandler.h", + "cppincludehierarchy.cpp", "cppincludehierarchy.h", + "cppincludehierarchyitem.cpp", "cppincludehierarchyitem.h", + "cppincludehierarchymodel.cpp", "cppincludehierarchymodel.h", + "cppincludehierarchytreeview.cpp", "cppincludehierarchytreeview.h", + "cppoutline.cpp", "cppoutline.h", + "cpppreprocessordialog.cpp", "cpppreprocessordialog.h", "cpppreprocessordialog.ui", + "cppquickfix.cpp", "cppquickfix.h", + "cppquickfixassistant.cpp", "cppquickfixassistant.h", + "cppquickfixes.cpp", "cppquickfixes.h", + "cppsnippetprovider.cpp", "cppsnippetprovider.h", + "cpptypehierarchy.cpp", "cpptypehierarchy.h", + "cppvirtualfunctionassistprovider.cpp", "cppvirtualfunctionassistprovider.h", + "cppvirtualfunctionproposalitem.cpp", "cppvirtualfunctionproposalitem.h", ] Group { @@ -74,12 +49,12 @@ QtcPlugin { condition: project.testsEnabled files: [ "cppdoxygen_test.cpp", + "cppincludehierarchy_test.cpp", "cppquickfix_test.cpp", "cppquickfix_test_utils.cpp", "cppquickfix_test_utils.h", "fileandtokenactions_test.cpp", "followsymbol_switchmethoddecldef_test.cpp", - "cppincludehierarchy_test.cpp", ] cpp.defines: outer.concat(['SRCDIR="' + FileInfo.path(filePath) + '"']) diff --git a/src/plugins/cpptools/cpptools.pro b/src/plugins/cpptools/cpptools.pro index c75af62eb93..31faa0d5ad2 100644 --- a/src/plugins/cpptools/cpptools.pro +++ b/src/plugins/cpptools/cpptools.pro @@ -1,131 +1,134 @@ -include(../../qtcreatorplugin.pri) - DEFINES += CPPTOOLS_LIBRARY win32-msvc*:DEFINES += _SCL_SECURE_NO_WARNINGS -HEADERS += completionsettingspage.h \ +include(../../qtcreatorplugin.pri) + +HEADERS += \ + abstracteditorsupport.h \ + builtinindexingsupport.h \ + commentssettings.h \ + completionsettingspage.h \ + cppchecksymbols.h \ cppclassesfilter.h \ + cppcodeformatter.h \ + cppcodemodelsettings.h \ + cppcodemodelsettingspage.h \ + cppcodestylepreferences.h \ + cppcodestylepreferencesfactory.h \ + cppcodestylesettings.h \ + cppcodestylesettingspage.h \ + cppcompletionassist.h \ + cppcompletionassistprovider.h \ cppcurrentdocumentfilter.h \ - cppfunctionsfilter.h \ - cppmodelmanager.h \ - cppmodelmanagerinterface.h \ - cpplocatorfilter.h \ - cpptools_global.h \ - cpptoolsconstants.h \ - cpptoolseditorsupport.h \ - cppsnapshotupdater.h \ - cpptoolsplugin.h \ - cppqtstyleindenter.h \ - searchsymbols.h \ cppdoxygen.h \ cppfilesettingspage.h \ cppfindreferences.h \ - cppcodeformatter.h \ - symbolsfindfilter.h \ - insertionpointlocator.h \ - cpprefactoringchanges.h \ - abstracteditorsupport.h \ - cppcompletionassist.h \ - cppcodestylesettingspage.h \ - cpptoolssettings.h \ - cppcodestylesettings.h \ - cppcodestylepreferencesfactory.h \ - cppcodestylepreferences.h \ - cpptoolsreuse.h \ - doxygengenerator.h \ - commentssettings.h \ - symbolfinder.h \ - cppmodelmanagersupport.h \ + cppfunctionsfilter.h \ cpphighlightingsupport.h \ cpphighlightingsupportinternal.h \ - cppchecksymbols.h \ - cpplocalsymbols.h \ - cppsemanticinfo.h \ - cppcompletionassistprovider.h \ - typehierarchybuilder.h \ cppindexingsupport.h \ - builtinindexingsupport.h \ - cpppointerdeclarationformatter.h \ - cppprojectfile.h \ - cpppreprocessor.h \ - includeutils.h \ + cpplocalsymbols.h \ cpplocatordata.h \ + cpplocatorfilter.h \ + cppmodelmanager.h \ + cppmodelmanagerinterface.h \ + cppmodelmanagersupport.h \ cppmodelmanagersupportinternal.h \ - cppcodemodelsettings.h \ - cppcodemodelsettingspage.h \ - functionutils.h + cpppointerdeclarationformatter.h \ + cpppreprocessor.h \ + cppprojectfile.h \ + cppqtstyleindenter.h \ + cpprefactoringchanges.h \ + cppsemanticinfo.h \ + cppsnapshotupdater.h \ + cpptools_global.h \ + cpptoolsconstants.h \ + cpptoolseditorsupport.h \ + cpptoolsplugin.h \ + cpptoolsreuse.h \ + cpptoolssettings.h \ + doxygengenerator.h \ + functionutils.h \ + includeutils.h \ + insertionpointlocator.h \ + searchsymbols.h \ + symbolfinder.h \ + symbolsfindfilter.h \ + typehierarchybuilder.h -SOURCES += completionsettingspage.cpp \ - cppclassesfilter.cpp \ - cppcurrentdocumentfilter.cpp \ - cppfunctionsfilter.cpp \ - cppmodelmanager.cpp \ - cppmodelmanagerinterface.cpp \ - cpplocatorfilter.cpp \ - cpptoolseditorsupport.cpp \ - cppsnapshotupdater.cpp \ - cpptoolsplugin.cpp \ - cppqtstyleindenter.cpp \ - searchsymbols.cpp \ - cppdoxygen.cpp \ - cppfilesettingspage.cpp \ +SOURCES += \ abstracteditorsupport.cpp \ - cppfindreferences.cpp \ - cppcodeformatter.cpp \ - symbolsfindfilter.cpp \ - insertionpointlocator.cpp \ - cpprefactoringchanges.cpp \ - cppcompletionassist.cpp \ - cppcodestylesettingspage.cpp \ - cpptoolssettings.cpp \ - cppcodestylesettings.cpp \ - cppcodestylepreferencesfactory.cpp \ - cppcodestylepreferences.cpp \ - cpptoolsreuse.cpp \ - doxygengenerator.cpp \ - commentssettings.cpp \ - symbolfinder.cpp \ - cppmodelmanagersupport.cpp \ - cpphighlightingsupport.cpp \ - cpphighlightingsupportinternal.cpp \ - cppchecksymbols.cpp \ - cpplocalsymbols.cpp \ - cppsemanticinfo.cpp \ - cppcompletionassistprovider.cpp \ - typehierarchybuilder.cpp \ - cppindexingsupport.cpp \ builtinindexingsupport.cpp \ - cpppointerdeclarationformatter.cpp \ - cppprojectfile.cpp \ - cpppreprocessor.cpp \ - includeutils.cpp \ - cpplocatordata.cpp \ - cppmodelmanagersupportinternal.cpp \ + commentssettings.cpp \ + completionsettingspage.cpp \ + cppchecksymbols.cpp \ + cppclassesfilter.cpp \ + cppcodeformatter.cpp \ cppcodemodelsettings.cpp \ cppcodemodelsettingspage.cpp \ - functionutils.cpp + cppcodestylepreferences.cpp \ + cppcodestylepreferencesfactory.cpp \ + cppcodestylesettings.cpp \ + cppcodestylesettingspage.cpp \ + cppcompletionassist.cpp \ + cppcompletionassistprovider.cpp \ + cppcurrentdocumentfilter.cpp \ + cppdoxygen.cpp \ + cppfilesettingspage.cpp \ + cppfindreferences.cpp \ + cppfunctionsfilter.cpp \ + cpphighlightingsupport.cpp \ + cpphighlightingsupportinternal.cpp \ + cppindexingsupport.cpp \ + cpplocalsymbols.cpp \ + cpplocatordata.cpp \ + cpplocatorfilter.cpp \ + cppmodelmanager.cpp \ + cppmodelmanagerinterface.cpp \ + cppmodelmanagersupport.cpp \ + cppmodelmanagersupportinternal.cpp \ + cpppointerdeclarationformatter.cpp \ + cpppreprocessor.cpp \ + cppprojectfile.cpp \ + cppqtstyleindenter.cpp \ + cpprefactoringchanges.cpp \ + cppsemanticinfo.cpp \ + cppsnapshotupdater.cpp \ + cpptoolseditorsupport.cpp \ + cpptoolsplugin.cpp \ + cpptoolsreuse.cpp \ + cpptoolssettings.cpp \ + doxygengenerator.cpp \ + functionutils.cpp \ + includeutils.cpp \ + insertionpointlocator.cpp \ + searchsymbols.cpp \ + symbolfinder.cpp \ + symbolsfindfilter.cpp \ + typehierarchybuilder.cpp -FORMS += completionsettingspage.ui \ - cppfilesettingspage.ui \ +FORMS += \ + completionsettingspage.ui \ + cppcodemodelsettingspage.ui \ cppcodestylesettingspage.ui \ - cppcodemodelsettingspage.ui + cppfilesettingspage.ui equals(TEST, 1) { - SOURCES += \ - cppcodegen_test.cpp \ - cppcompletion_test.cpp \ - cppmodelmanager_test.cpp \ - modelmanagertesthelper.cpp \ - cpppointerdeclarationformatter_test.cpp \ - cpplocatorfilter_test.cpp \ - symbolsearcher_test.cpp \ - cpppreprocessor_test.cpp \ - cpppreprocessertesthelper.cpp \ - cppheadersource_test.cpp \ - typehierarchybuilder_test.cpp - HEADERS += \ cpppreprocessertesthelper.h \ modelmanagertesthelper.h + SOURCES += \ + cppcodegen_test.cpp \ + cppcompletion_test.cpp \ + cppheadersource_test.cpp \ + cpplocatorfilter_test.cpp \ + cppmodelmanager_test.cpp \ + cpppointerdeclarationformatter_test.cpp \ + cpppreprocessertesthelper.cpp \ + cpppreprocessor_test.cpp \ + modelmanagertesthelper.cpp \ + symbolsearcher_test.cpp \ + typehierarchybuilder_test.cpp + DEFINES += SRCDIR=\\\"$$PWD\\\" } diff --git a/src/plugins/cpptools/cpptools.qbs b/src/plugins/cpptools/cpptools.qbs index 14dc119d61b..721620b6f0c 100644 --- a/src/plugins/cpptools/cpptools.qbs +++ b/src/plugins/cpptools/cpptools.qbs @@ -22,110 +22,57 @@ QtcPlugin { } files: [ - "abstracteditorsupport.cpp", - "abstracteditorsupport.h", - "commentssettings.cpp", - "commentssettings.h", - "completionsettingspage.cpp", - "completionsettingspage.h", - "completionsettingspage.ui", - "cppchecksymbols.cpp", - "cppchecksymbols.h", - "cppclassesfilter.cpp", - "cppclassesfilter.h", - "cppcodeformatter.cpp", - "cppcodeformatter.h", - "cppcodestylepreferences.cpp", - "cppcodestylepreferences.h", - "cppcodestylepreferencesfactory.cpp", - "cppcodestylepreferencesfactory.h", - "cppcodestylesettings.cpp", - "cppcodestylesettings.h", - "cppcodestylesettingspage.cpp", - "cppcodestylesettingspage.h", - "cppcodestylesettingspage.ui", - "cppcompletionassist.cpp", - "cppcompletionassist.h", - "cppcompletionassistprovider.cpp", - "cppcompletionassistprovider.h", - "cppcurrentdocumentfilter.cpp", - "cppcurrentdocumentfilter.h", - "cppdoxygen.cpp", - "cppdoxygen.h", - "cppfilesettingspage.cpp", - "cppfilesettingspage.h", - "cppfilesettingspage.ui", - "cppfindreferences.cpp", - "cppfindreferences.h", - "cppfunctionsfilter.cpp", - "cppfunctionsfilter.h", - "cpphighlightingsupport.cpp", - "cpphighlightingsupport.h", - "cpphighlightingsupportinternal.cpp", - "cpphighlightingsupportinternal.h", - "cppindexingsupport.cpp", - "cppindexingsupport.h", - "cpplocalsymbols.cpp", - "cpplocalsymbols.h", - "cpplocatordata.cpp", - "cpplocatordata.h", - "cpplocatorfilter.cpp", - "cpplocatorfilter.h", - "cppmodelmanager.cpp", - "cppmodelmanager.h", - "cppmodelmanagersupport.h", - "cppmodelmanagersupport.cpp", - "cppmodelmanagersupportinternal.h", - "cppmodelmanagersupportinternal.cpp", - "cppmodelmanagerinterface.cpp", - "cppmodelmanagerinterface.h", - "cppqtstyleindenter.cpp", - "cppqtstyleindenter.h", - "cpppointerdeclarationformatter.cpp", - "cpppointerdeclarationformatter.h", - "cppprojectfile.cpp", - "cppprojectfile.h", - "cpprefactoringchanges.cpp", - "cpprefactoringchanges.h", - "cppsemanticinfo.cpp", - "cppsemanticinfo.h", + "abstracteditorsupport.cpp", "abstracteditorsupport.h", + "builtinindexingsupport.cpp", "builtinindexingsupport.h", + "commentssettings.cpp", "commentssettings.h", + "completionsettingspage.cpp", "completionsettingspage.h", "completionsettingspage.ui", + "cppchecksymbols.cpp", "cppchecksymbols.h", + "cppclassesfilter.cpp", "cppclassesfilter.h", + "cppcodeformatter.cpp", "cppcodeformatter.h", + "cppcodemodelsettings.cpp", "cppcodemodelsettings.h", + "cppcodemodelsettingspage.cpp", "cppcodemodelsettingspage.h", "cppcodemodelsettingspage.ui", + "cppcodestylepreferences.cpp", "cppcodestylepreferences.h", + "cppcodestylepreferencesfactory.cpp", "cppcodestylepreferencesfactory.h", + "cppcodestylesettings.cpp", "cppcodestylesettings.h", + "cppcodestylesettingspage.cpp", "cppcodestylesettingspage.h", "cppcodestylesettingspage.ui", + "cppcompletionassist.cpp", "cppcompletionassist.h", + "cppcompletionassistprovider.cpp", "cppcompletionassistprovider.h", + "cppcurrentdocumentfilter.cpp", "cppcurrentdocumentfilter.h", + "cppdoxygen.cpp", "cppdoxygen.h", + "cppfilesettingspage.cpp", "cppfilesettingspage.h", "cppfilesettingspage.ui", + "cppfindreferences.cpp", "cppfindreferences.h", + "cppfunctionsfilter.cpp", "cppfunctionsfilter.h", + "cpphighlightingsupport.cpp", "cpphighlightingsupport.h", + "cpphighlightingsupportinternal.cpp", "cpphighlightingsupportinternal.h", + "cppindexingsupport.cpp", "cppindexingsupport.h", + "cpplocalsymbols.cpp", "cpplocalsymbols.h", + "cpplocatordata.cpp", "cpplocatordata.h", + "cpplocatorfilter.cpp", "cpplocatorfilter.h", + "cppmodelmanager.cpp", "cppmodelmanager.h", + "cppmodelmanagerinterface.cpp", "cppmodelmanagerinterface.h", + "cppmodelmanagersupport.cpp", "cppmodelmanagersupport.h", + "cppmodelmanagersupportinternal.cpp", "cppmodelmanagersupportinternal.h", + "cpppointerdeclarationformatter.cpp", "cpppointerdeclarationformatter.h", + "cpppreprocessor.cpp", "cpppreprocessor.h", + "cppprojectfile.cpp", "cppprojectfile.h", + "cppqtstyleindenter.cpp", "cppqtstyleindenter.h", + "cpprefactoringchanges.cpp", "cpprefactoringchanges.h", + "cppsemanticinfo.cpp", "cppsemanticinfo.h", + "cppsnapshotupdater.cpp", "cppsnapshotupdater.h", "cpptools_global.h", "cpptoolsconstants.h", - "cpptoolseditorsupport.cpp", - "cpptoolseditorsupport.h", - "cpptoolsplugin.cpp", - "cpptoolsplugin.h", - "cpptoolsreuse.cpp", - "cpptoolsreuse.h", - "cpptoolssettings.cpp", - "cpptoolssettings.h", - "doxygengenerator.cpp", - "doxygengenerator.h", - "functionutils.cpp", - "functionutils.h", - "insertionpointlocator.cpp", - "insertionpointlocator.h", - "searchsymbols.cpp", - "searchsymbols.h", - "symbolfinder.cpp", - "symbolfinder.h", - "symbolsfindfilter.cpp", - "symbolsfindfilter.h", - "typehierarchybuilder.cpp", - "typehierarchybuilder.h", - "builtinindexingsupport.cpp", - "builtinindexingsupport.h", - "cpppreprocessor.cpp", - "cpppreprocessor.h", - "includeutils.cpp", - "includeutils.h", - "cppcodemodelsettings.cpp", - "cppcodemodelsettings.h", - "cppcodemodelsettingspage.cpp", - "cppcodemodelsettingspage.h", - "cppcodemodelsettingspage.ui", - "cppsnapshotupdater.cpp", - "cppsnapshotupdater.h", + "cpptoolseditorsupport.cpp", "cpptoolseditorsupport.h", + "cpptoolsplugin.cpp", "cpptoolsplugin.h", + "cpptoolsreuse.cpp", "cpptoolsreuse.h", + "cpptoolssettings.cpp", "cpptoolssettings.h", + "doxygengenerator.cpp", "doxygengenerator.h", + "functionutils.cpp", "functionutils.h", + "includeutils.cpp", "includeutils.h", + "insertionpointlocator.cpp", "insertionpointlocator.h", + "searchsymbols.cpp", "searchsymbols.h", + "symbolfinder.cpp", "symbolfinder.h", + "symbolsfindfilter.cpp", "symbolsfindfilter.h", + "typehierarchybuilder.cpp", "typehierarchybuilder.h", ] Group { @@ -135,14 +82,14 @@ QtcPlugin { "cppcodegen_test.cpp", "cppcompletion_test.cpp", "cppheadersource_test.cpp", - "cppmodelmanager_test.cpp", - "modelmanagertesthelper.cpp", "modelmanagertesthelper.h", - "cpppointerdeclarationformatter_test.cpp", "cpplocatorfilter_test.cpp", - "symbolsearcher_test.cpp", - "cpppreprocessor_test.cpp", + "cppmodelmanager_test.cpp", + "cpppointerdeclarationformatter_test.cpp", "cpppreprocessertesthelper.cpp", "cpppreprocessertesthelper.h", - "typehierarchybuilder_test.cpp" + "cpppreprocessor_test.cpp", + "modelmanagertesthelper.cpp", "modelmanagertesthelper.h", + "symbolsearcher_test.cpp", + "typehierarchybuilder_test.cpp", ] cpp.defines: outer.concat(['SRCDIR="' + FileInfo.path(filePath) + '"'])