├── .gitignore ├── 3rdparty ├── cmake │ ├── Copyright.txt │ ├── README.md │ ├── cmListFileCache.cxx │ ├── cmListFileCache.h │ ├── cmListFileLexer.cxx │ ├── cmListFileLexer.h │ ├── cmListFileLexer.in.l │ └── cmStandardLexer.h └── rstparser │ ├── README.qt │ ├── README.rst │ ├── rstparser-test.cc │ ├── rstparser.cc │ └── rstparser.h ├── CMakeLists.txt ├── CMakeProjectManager2.json.in ├── README.md ├── appy-patch.sh ├── cmake_global.h ├── cmakeabstractprocessstep.cpp ├── cmakeabstractprocessstep.h ├── cmakeautocompleter.cpp ├── cmakeautocompleter.h ├── cmakebuildconfiguration.cpp ├── cmakebuildconfiguration.h ├── cmakebuildstep.cpp ├── cmakebuildstep.h ├── cmakebuildsystem.cpp ├── cmakebuildsystem.h ├── cmakebuildsystem.md ├── cmakebuildtarget.h ├── cmakeconfigitem.cpp ├── cmakeconfigitem.h ├── cmakeeditor.cpp ├── cmakeeditor.h ├── cmakefilecompletionassist.cpp ├── cmakefilecompletionassist.h ├── cmakeformatter.cpp ├── cmakeformatter.h ├── cmakeindenter.cpp ├── cmakeindenter.h ├── cmakeinstallstep.cpp ├── cmakeinstallstep.h ├── cmakekitaspect.cpp ├── cmakekitaspect.h ├── cmakelocatorfilter.cpp ├── cmakelocatorfilter.h ├── cmakeparser.cpp ├── cmakeparser.h ├── cmakeprocess.cpp ├── cmakeprocess.h ├── cmakeproject.cpp ├── cmakeproject.h ├── cmakeproject.qrc ├── cmakeprojectconstants.h ├── cmakeprojectimporter.cpp ├── cmakeprojectimporter.h ├── cmakeprojectmanager.cpp ├── cmakeprojectmanager.h ├── cmakeprojectmanager.qbs ├── cmakeprojectmanagertr.h ├── cmakeprojectnodes.cpp ├── cmakeprojectnodes.h ├── cmakeprojectplugin.cpp ├── cmakeprojectplugin.h ├── cmakesettingspage.cpp ├── cmakesettingspage.h ├── cmakespecificsettings.cpp ├── cmakespecificsettings.h ├── cmaketool.cpp ├── cmaketool.h ├── cmaketoolmanager.cpp ├── cmaketoolmanager.h ├── cmaketoolsettingsaccessor.cpp ├── cmaketoolsettingsaccessor.h ├── configmodel.cpp ├── configmodel.h ├── configmodelitemdelegate.cpp ├── configmodelitemdelegate.h ├── fileapidataextractor.cpp ├── fileapidataextractor.h ├── fileapiparser.cpp ├── fileapiparser.h ├── fileapireader.cpp ├── fileapireader.h ├── images ├── fileoverlay_cmake.png ├── fileoverlay_cmake@2x.png ├── settingscategory_cmakeprojectmanager.png └── settingscategory_cmakeprojectmanager@2x.png ├── mk-cmake-patches.sh ├── presetsmacros.cpp ├── presetsmacros.h ├── presetsparser.cpp ├── presetsparser.h ├── projecttreehelper.cpp ├── projecttreehelper.h ├── simplefileapireader.cpp ├── simplefileapireader.h └── wizard └── cmake2 ├── CMakeLists.txt ├── CMakeLists_qt5.txt ├── cmake └── modules │ └── .dummy ├── main.c ├── main.cpp └── wizard.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/cmake/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/cmake/Copyright.txt -------------------------------------------------------------------------------- /3rdparty/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/cmake/README.md -------------------------------------------------------------------------------- /3rdparty/cmake/cmListFileCache.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/cmake/cmListFileCache.cxx -------------------------------------------------------------------------------- /3rdparty/cmake/cmListFileCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/cmake/cmListFileCache.h -------------------------------------------------------------------------------- /3rdparty/cmake/cmListFileLexer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/cmake/cmListFileLexer.cxx -------------------------------------------------------------------------------- /3rdparty/cmake/cmListFileLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/cmake/cmListFileLexer.h -------------------------------------------------------------------------------- /3rdparty/cmake/cmListFileLexer.in.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/cmake/cmListFileLexer.in.l -------------------------------------------------------------------------------- /3rdparty/cmake/cmStandardLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/cmake/cmStandardLexer.h -------------------------------------------------------------------------------- /3rdparty/rstparser/README.qt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/rstparser/README.qt -------------------------------------------------------------------------------- /3rdparty/rstparser/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/rstparser/README.rst -------------------------------------------------------------------------------- /3rdparty/rstparser/rstparser-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/rstparser/rstparser-test.cc -------------------------------------------------------------------------------- /3rdparty/rstparser/rstparser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/rstparser/rstparser.cc -------------------------------------------------------------------------------- /3rdparty/rstparser/rstparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/3rdparty/rstparser/rstparser.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeProjectManager2.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/CMakeProjectManager2.json.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/README.md -------------------------------------------------------------------------------- /appy-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/appy-patch.sh -------------------------------------------------------------------------------- /cmake_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmake_global.h -------------------------------------------------------------------------------- /cmakeabstractprocessstep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeabstractprocessstep.cpp -------------------------------------------------------------------------------- /cmakeabstractprocessstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeabstractprocessstep.h -------------------------------------------------------------------------------- /cmakeautocompleter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeautocompleter.cpp -------------------------------------------------------------------------------- /cmakeautocompleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeautocompleter.h -------------------------------------------------------------------------------- /cmakebuildconfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakebuildconfiguration.cpp -------------------------------------------------------------------------------- /cmakebuildconfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakebuildconfiguration.h -------------------------------------------------------------------------------- /cmakebuildstep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakebuildstep.cpp -------------------------------------------------------------------------------- /cmakebuildstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakebuildstep.h -------------------------------------------------------------------------------- /cmakebuildsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakebuildsystem.cpp -------------------------------------------------------------------------------- /cmakebuildsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakebuildsystem.h -------------------------------------------------------------------------------- /cmakebuildsystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakebuildsystem.md -------------------------------------------------------------------------------- /cmakebuildtarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakebuildtarget.h -------------------------------------------------------------------------------- /cmakeconfigitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeconfigitem.cpp -------------------------------------------------------------------------------- /cmakeconfigitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeconfigitem.h -------------------------------------------------------------------------------- /cmakeeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeeditor.cpp -------------------------------------------------------------------------------- /cmakeeditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeeditor.h -------------------------------------------------------------------------------- /cmakefilecompletionassist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakefilecompletionassist.cpp -------------------------------------------------------------------------------- /cmakefilecompletionassist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakefilecompletionassist.h -------------------------------------------------------------------------------- /cmakeformatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeformatter.cpp -------------------------------------------------------------------------------- /cmakeformatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeformatter.h -------------------------------------------------------------------------------- /cmakeindenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeindenter.cpp -------------------------------------------------------------------------------- /cmakeindenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeindenter.h -------------------------------------------------------------------------------- /cmakeinstallstep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeinstallstep.cpp -------------------------------------------------------------------------------- /cmakeinstallstep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeinstallstep.h -------------------------------------------------------------------------------- /cmakekitaspect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakekitaspect.cpp -------------------------------------------------------------------------------- /cmakekitaspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakekitaspect.h -------------------------------------------------------------------------------- /cmakelocatorfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakelocatorfilter.cpp -------------------------------------------------------------------------------- /cmakelocatorfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakelocatorfilter.h -------------------------------------------------------------------------------- /cmakeparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeparser.cpp -------------------------------------------------------------------------------- /cmakeparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeparser.h -------------------------------------------------------------------------------- /cmakeprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprocess.cpp -------------------------------------------------------------------------------- /cmakeprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprocess.h -------------------------------------------------------------------------------- /cmakeproject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeproject.cpp -------------------------------------------------------------------------------- /cmakeproject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeproject.h -------------------------------------------------------------------------------- /cmakeproject.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeproject.qrc -------------------------------------------------------------------------------- /cmakeprojectconstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectconstants.h -------------------------------------------------------------------------------- /cmakeprojectimporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectimporter.cpp -------------------------------------------------------------------------------- /cmakeprojectimporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectimporter.h -------------------------------------------------------------------------------- /cmakeprojectmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectmanager.cpp -------------------------------------------------------------------------------- /cmakeprojectmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectmanager.h -------------------------------------------------------------------------------- /cmakeprojectmanager.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectmanager.qbs -------------------------------------------------------------------------------- /cmakeprojectmanagertr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectmanagertr.h -------------------------------------------------------------------------------- /cmakeprojectnodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectnodes.cpp -------------------------------------------------------------------------------- /cmakeprojectnodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectnodes.h -------------------------------------------------------------------------------- /cmakeprojectplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectplugin.cpp -------------------------------------------------------------------------------- /cmakeprojectplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakeprojectplugin.h -------------------------------------------------------------------------------- /cmakesettingspage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakesettingspage.cpp -------------------------------------------------------------------------------- /cmakesettingspage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakesettingspage.h -------------------------------------------------------------------------------- /cmakespecificsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakespecificsettings.cpp -------------------------------------------------------------------------------- /cmakespecificsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmakespecificsettings.h -------------------------------------------------------------------------------- /cmaketool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmaketool.cpp -------------------------------------------------------------------------------- /cmaketool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmaketool.h -------------------------------------------------------------------------------- /cmaketoolmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmaketoolmanager.cpp -------------------------------------------------------------------------------- /cmaketoolmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmaketoolmanager.h -------------------------------------------------------------------------------- /cmaketoolsettingsaccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmaketoolsettingsaccessor.cpp -------------------------------------------------------------------------------- /cmaketoolsettingsaccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/cmaketoolsettingsaccessor.h -------------------------------------------------------------------------------- /configmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/configmodel.cpp -------------------------------------------------------------------------------- /configmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/configmodel.h -------------------------------------------------------------------------------- /configmodelitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/configmodelitemdelegate.cpp -------------------------------------------------------------------------------- /configmodelitemdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/configmodelitemdelegate.h -------------------------------------------------------------------------------- /fileapidataextractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/fileapidataextractor.cpp -------------------------------------------------------------------------------- /fileapidataextractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/fileapidataextractor.h -------------------------------------------------------------------------------- /fileapiparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/fileapiparser.cpp -------------------------------------------------------------------------------- /fileapiparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/fileapiparser.h -------------------------------------------------------------------------------- /fileapireader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/fileapireader.cpp -------------------------------------------------------------------------------- /fileapireader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/fileapireader.h -------------------------------------------------------------------------------- /images/fileoverlay_cmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/images/fileoverlay_cmake.png -------------------------------------------------------------------------------- /images/fileoverlay_cmake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/images/fileoverlay_cmake@2x.png -------------------------------------------------------------------------------- /images/settingscategory_cmakeprojectmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/images/settingscategory_cmakeprojectmanager.png -------------------------------------------------------------------------------- /images/settingscategory_cmakeprojectmanager@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/images/settingscategory_cmakeprojectmanager@2x.png -------------------------------------------------------------------------------- /mk-cmake-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/mk-cmake-patches.sh -------------------------------------------------------------------------------- /presetsmacros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/presetsmacros.cpp -------------------------------------------------------------------------------- /presetsmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/presetsmacros.h -------------------------------------------------------------------------------- /presetsparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/presetsparser.cpp -------------------------------------------------------------------------------- /presetsparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/presetsparser.h -------------------------------------------------------------------------------- /projecttreehelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/projecttreehelper.cpp -------------------------------------------------------------------------------- /projecttreehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/projecttreehelper.h -------------------------------------------------------------------------------- /simplefileapireader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/simplefileapireader.cpp -------------------------------------------------------------------------------- /simplefileapireader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/simplefileapireader.h -------------------------------------------------------------------------------- /wizard/cmake2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/wizard/cmake2/CMakeLists.txt -------------------------------------------------------------------------------- /wizard/cmake2/CMakeLists_qt5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/wizard/cmake2/CMakeLists_qt5.txt -------------------------------------------------------------------------------- /wizard/cmake2/cmake/modules/.dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wizard/cmake2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/wizard/cmake2/main.c -------------------------------------------------------------------------------- /wizard/cmake2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/wizard/cmake2/main.cpp -------------------------------------------------------------------------------- /wizard/cmake2/wizard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h4tr3d/cmakeprojectmanager2/HEAD/wizard/cmake2/wizard.json --------------------------------------------------------------------------------