diff options
author | Brad King <brad.king@kitware.com> | 2008-01-18 13:35:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-18 13:35:37 (GMT) |
commit | 6ad79d13ddd74b9bf1a1819527d5eb1e88bac8c2 (patch) | |
tree | dd11a11665c1b18499bcc096eaf2407483091ecc /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 2eff05e5cb8af2925b3aaa8c6050b92aaaac1fdf (diff) | |
download | CMake-6ad79d13ddd74b9bf1a1819527d5eb1e88bac8c2.zip CMake-6ad79d13ddd74b9bf1a1819527d5eb1e88bac8c2.tar.gz CMake-6ad79d13ddd74b9bf1a1819527d5eb1e88bac8c2.tar.bz2 |
BUG: Construction of COMPILE_DEFINITIONS_<CONFIG> property name must use upper-case config name.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 8445a6c..be7ae59 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1849,7 +1849,7 @@ void cmLocalUnixMakefileGenerator3 std::vector<std::string> defines; { std::string defPropName = "COMPILE_DEFINITIONS_"; - defPropName += this->ConfigurationName; + defPropName += cmSystemTools::UpperCase(this->ConfigurationName); if(const char* ddefs = this->Makefile->GetProperty("COMPILE_DEFINITIONS")) { cmSystemTools::ExpandListArgument(ddefs, defines); |