diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-05-20 20:56:34 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-05-20 20:56:34 (GMT) |
commit | 3031467e33e61d9e7daa3357ee5f6b31c233e7fd (patch) | |
tree | 971ff1363cd96f5821c1c59bd633801134578c58 /Source/cmGetDirectoryPropertyCommand.cxx | |
parent | 17d6f9e17062d0ddf392823ba51e92f31ebdf7d5 (diff) | |
download | CMake-3031467e33e61d9e7daa3357ee5f6b31c233e7fd.zip CMake-3031467e33e61d9e7daa3357ee5f6b31c233e7fd.tar.gz CMake-3031467e33e61d9e7daa3357ee5f6b31c233e7fd.tar.bz2 |
ENH: Implement additional make clean files as a directory property instead of cmake variable
Diffstat (limited to 'Source/cmGetDirectoryPropertyCommand.cxx')
-rw-r--r-- | Source/cmGetDirectoryPropertyCommand.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmGetDirectoryPropertyCommand.cxx b/Source/cmGetDirectoryPropertyCommand.cxx index 23b0008..81d249b 100644 --- a/Source/cmGetDirectoryPropertyCommand.cxx +++ b/Source/cmGetDirectoryPropertyCommand.cxx @@ -95,6 +95,12 @@ bool cmGetDirectoryPropertyCommand::InitialPass( } else { + const char *prop = m_Makefile->GetProperty(args[1].c_str()); + if (prop) + { + m_Makefile->AddDefinition(variable.c_str(), prop); + return true; + } std::string emsg = "Unknown directory property: " + args[1]; this->SetError(emsg.c_str()); return false; |