[Orxonox-commit 5601] r10263 - code/trunk/cmake/tools
landauf at orxonox.net
landauf at orxonox.net
Tue Feb 10 23:10:39 CET 2015
Author: landauf
Date: 2015-02-10 23:10:39 +0100 (Tue, 10 Feb 2015)
New Revision: 10263
Modified:
code/trunk/cmake/tools/FlagUtilities.cmake
Log:
fixed details
Modified: code/trunk/cmake/tools/FlagUtilities.cmake
===================================================================
--- code/trunk/cmake/tools/FlagUtilities.cmake 2015-02-06 22:30:26 UTC (rev 10262)
+++ code/trunk/cmake/tools/FlagUtilities.cmake 2015-02-10 22:10:39 UTC (rev 10263)
@@ -22,7 +22,7 @@
# Description:
# Sets the compiler/linker flags. After the flags you can specify more args:
# Release, Debug, RelWithDebInfo, MinSizeRel, RelForDevs: Build configs
- # ReleaseAll: Sets the flags of all three release builds
+ # ReleaseAll: Sets the flags of all four release builds
# CACHE: Values are witten with SET_CACHE_ADVANCED
# FORCE: When writing to the cache, the values are set anyway
# Any variable names (like WIN32, MSVC, etc.): Condition (combined with AND)
@@ -89,7 +89,7 @@
IF(_arg MATCHES "${_key_regex}")
LIST(APPEND _langs "${_arg}")
ELSEIF( _arg MATCHES "^(Debug|Release|MinSizeRel|RelWithDebInfo|RelForDevs)$"
- OR _arg MATCHES "^(DEBUG|RELEASE|MINSIZEREL|RELWITHDEBINFO|RelForDevs)$")
+ OR _arg MATCHES "^(DEBUG|RELEASE|MINSIZEREL|RELWITHDEBINFO|RELFORDEVS)$")
STRING(TOUPPER "${_arg}" _upper_arg)
LIST(APPEND _build_types ${_upper_arg})
ELSEIF(_arg STREQUAL "ReleaseAll")
More information about the Orxonox-commit
mailing list