forked from qt-creator/qt-creator
cmake build: Fix PLUGIN_RECOMMENDS
Use the right variable name, and syntax for iterating the list. Fix plugin configuration order, so targets are found. Fix misspelled plugin name. Also remove unused and wrong "EXPERIMENTAL" option. Change-Id: I77cc5d12ebdaa8bcd0315dd830a9435c648b2ba3 Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Cristian Adam <cristian.adam@qt.io>
This commit is contained in:
@@ -26,7 +26,6 @@ add_subdirectory(help)
|
||||
add_subdirectory(resourceeditor)
|
||||
add_subdirectory(tasklist)
|
||||
add_subdirectory(nim)
|
||||
add_subdirectory(incredibuild)
|
||||
add_subdirectory(conan)
|
||||
|
||||
# Level 4: (only depends on Level 3 and below)
|
||||
@@ -45,9 +44,7 @@ add_subdirectory(beautifier)
|
||||
add_subdirectory(clangformat)
|
||||
add_subdirectory(clangrefactoring)
|
||||
add_subdirectory(clearcase)
|
||||
add_subdirectory(cmakeprojectmanager)
|
||||
add_subdirectory(cvs)
|
||||
add_subdirectory(debugger)
|
||||
add_subdirectory(designer)
|
||||
add_subdirectory(fakevim)
|
||||
add_subdirectory(genericprojectmanager)
|
||||
@@ -65,6 +62,10 @@ add_subdirectory(languageclient)
|
||||
add_subdirectory(studiowelcome)
|
||||
|
||||
# Level 6:
|
||||
add_subdirectory(cmakeprojectmanager)
|
||||
add_subdirectory(debugger)
|
||||
|
||||
# Level 7:
|
||||
add_subdirectory(android)
|
||||
add_subdirectory(autotest)
|
||||
add_subdirectory(autotoolsprojectmanager)
|
||||
@@ -72,6 +73,7 @@ add_subdirectory(baremetal)
|
||||
add_subdirectory(clangcodemodel)
|
||||
add_subdirectory(clangtools)
|
||||
add_subdirectory(cppcheck)
|
||||
add_subdirectory(incredibuild)
|
||||
add_subdirectory(ios)
|
||||
add_subdirectory(python)
|
||||
add_subdirectory(qmljseditor)
|
||||
@@ -84,7 +86,7 @@ add_subdirectory(perfprofiler)
|
||||
add_subdirectory(qbsprojectmanager)
|
||||
add_subdirectory(ctfvisualizer)
|
||||
|
||||
# Level 7:
|
||||
# Level 8:
|
||||
add_subdirectory(boot2qt)
|
||||
unset(qmldesigner_builddir)
|
||||
if (WIN32 AND CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
add_qtc_plugin(IncrediBuild
|
||||
PLUGIN_DEPENDS Core ProjectExplorer
|
||||
PLUGIN_RECOMMENDS QmakeProjectManager CmakeProjectManager
|
||||
PLUGIN_RECOMMENDS QmakeProjectManager CMakeProjectManager
|
||||
SOURCES
|
||||
buildconsolebuildstep.cpp
|
||||
buildconsolebuildstep.h
|
||||
|
||||
Reference in New Issue
Block a user