diff options
Diffstat (limited to 'Source/cmDefinePropertyCommand.cxx')
-rw-r--r-- | Source/cmDefinePropertyCommand.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmDefinePropertyCommand.cxx b/Source/cmDefinePropertyCommand.cxx index 15a8cf5..f0bd7d8 100644 --- a/Source/cmDefinePropertyCommand.cxx +++ b/Source/cmDefinePropertyCommand.cxx @@ -49,6 +49,14 @@ bool cmDefinePropertyCommand::InitialPass( { scope = cmProperty::TEST; } + else if (args[1] == "VARIABLE") + { + scope = cmProperty::VARIABLE; + } + else if (args[1] == "CACHED_VARIABLE") + { + scope = cmProperty::CACHED_VARIABLE; + } else { this->SetError("called with illegal arguments."); |