aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/shared
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2013-04-10 17:09:08 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-04-17 14:17:19 +0200
commit091dc267d3526e7b3d8e05b32a2506aea114f778 (patch)
tree1f944d36a0f192a6829f1917d286ec71a3d18dea /src/app/shared
parent6682429d58c279399749a73ad6356be24adc8136 (diff)
make Depends.name and Depends.submodules case sensitive
Also rename modules/qt to modules/Qt and use this form consequently. Task-number: QBS-254 Change-Id: I2e994f2bc5f93d4f887e14ac224ab360c54ad029 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'src/app/shared')
-rw-r--r--src/app/shared/specialplatformssetup.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/app/shared/specialplatformssetup.cpp b/src/app/shared/specialplatformssetup.cpp
index 0c16d805f..5bd8a4024 100644
--- a/src/app/shared/specialplatformssetup.cpp
+++ b/src/app/shared/specialplatformssetup.cpp
@@ -158,13 +158,13 @@ void SpecialPlatformsSetup::registerProfile(const PlatformInfo &platformInfo)
profile.setValue(QLatin1String("cpp.cxxFlags"), platformInfo.cxxFlags);
profile.setValue(QLatin1String("cpp.linkerFlags"), platformInfo.ldFlags);
- profile.setValue(QLatin1String("qt.core.binPath"), platformInfo.qtBinDir);
- profile.setValue(QLatin1String("qt.core.libPath"),
+ profile.setValue(QLatin1String("Qt.core.binPath"), platformInfo.qtBinDir);
+ profile.setValue(QLatin1String("Qt.core.libPath"),
platformInfo.sysrootDir + QLatin1String("/usr/lib"));
- profile.setValue(QLatin1String("qt.core.incPath"), platformInfo.qtIncDir);
- profile.setValue(QLatin1String("qt.core.mkspecPath"), platformInfo.qtMkspecPath);
- profile.setValue(QLatin1String("qt.core.namespace"), QString());
- profile.setValue(QLatin1String("qt.core.libInfix"), QString());
+ profile.setValue(QLatin1String("Qt.core.incPath"), platformInfo.qtIncDir);
+ profile.setValue(QLatin1String("Qt.core.mkspecPath"), platformInfo.qtMkspecPath);
+ profile.setValue(QLatin1String("Qt.core.namespace"), QString());
+ profile.setValue(QLatin1String("Qt.core.libInfix"), QString());
}
} // namespace qbs