summaryrefslogtreecommitdiff
path: root/Source/cmPropertyMap.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2007-01-04 13:02:43 -0500
committerKen Martin <ken.martin@kitware.com>2007-01-04 13:02:43 -0500
commit92db085ac648d2e1e04ae55d15b71dcab1b8f004 (patch)
tree7e09aaa230fe75ec436496f7b24be68a2377f236 /Source/cmPropertyMap.cxx
parent6feb9a33093ec94d71f1e572d463d352d9405dd0 (diff)
downloadcmake-92db085ac648d2e1e04ae55d15b71dcab1b8f004.tar.gz
ENH: change STRICT to CMAKE_STRICT
Diffstat (limited to 'Source/cmPropertyMap.cxx')
-rw-r--r--Source/cmPropertyMap.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmPropertyMap.cxx b/Source/cmPropertyMap.cxx
index 9c68824637..1ea913e0b8 100644
--- a/Source/cmPropertyMap.cxx
+++ b/Source/cmPropertyMap.cxx
@@ -19,7 +19,7 @@
#include "cmake.h"
// define STRICT to get checking of all set and get property calls
-//#define STRICT
+//#define CMAKE_STRICT
cmProperty *cmPropertyMap::GetOrCreateProperty(const char *name)
{
@@ -44,7 +44,7 @@ void cmPropertyMap::SetProperty(const char *name, const char *value,
return;
}
-#ifdef STRICT
+#ifdef CMAKE_STRICT
if (!this->CMakeInstance)
{
cmSystemTools::Error("CMakeInstance not set on a property map!");
@@ -97,7 +97,7 @@ const char *cmPropertyMap
}
// has the property been defined?
-#ifdef STRICT
+#ifdef CMAKE_STRICT
if (!this->CMakeInstance)
{
cmSystemTools::Error("CMakeInstance not set on a property map!");