diff options
author | Filippo Cucchetto <filippocucchetto@gmail.com> | 2016-12-16 00:43:14 +0100 |
---|---|---|
committer | Filippo Cucchetto <filippocucchetto@gmail.com> | 2017-01-23 11:19:11 +0000 |
commit | 4b1f8f360946d47fd1f8165f5e194805d3536810 (patch) | |
tree | 192a53b20b938ce08614df25a9f554941e93ae80 /src/plugins/qmakeandroidsupport | |
parent | 35690ab66e3c79bf2ff69a2b996da0c2584ee13b (diff) | |
download | qt-creator-4b1f8f360946d47fd1f8165f5e194805d3536810.tar.gz |
ProjectExplorer: Added support for registering custom languages
Change-Id: I728a2ed1ef7d9f44d7c2b59d27d6e23444cd3bb5
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'src/plugins/qmakeandroidsupport')
-rw-r--r-- | src/plugins/qmakeandroidsupport/androidpackageinstallationstep.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/qmakeandroidsupport/androidpackageinstallationstep.cpp b/src/plugins/qmakeandroidsupport/androidpackageinstallationstep.cpp index 40e8b3942a..d07d766462 100644 --- a/src/plugins/qmakeandroidsupport/androidpackageinstallationstep.cpp +++ b/src/plugins/qmakeandroidsupport/androidpackageinstallationstep.cpp @@ -31,6 +31,7 @@ #include <projectexplorer/buildsteplist.h> #include <projectexplorer/target.h> #include <projectexplorer/buildconfiguration.h> +#include <projectexplorer/projectexplorerconstants.h> #include <projectexplorer/toolchain.h> #include <projectexplorer/kitinformation.h> #include <projectexplorer/gnumakeparser.h> @@ -65,7 +66,7 @@ bool AndroidPackageInstallationStep::init(QList<const BuildStep *> &earlierSteps ProjectExplorer::ToolChain *tc = ProjectExplorer::ToolChainKitInformation::toolChain(target()->kit(), - ProjectExplorer::ToolChain::Language::Cxx); + ProjectExplorer::Constants::CXX_LANGUAGE_ID); ProjectExplorer::ProcessParameters *pp = processParameters(); pp->setMacroExpander(bc->macroExpander()); |