diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-14 15:23:31 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-06-14 15:23:31 (GMT) |
commit | dcb3bf0548dd60422fe47f44945f41502e20c10e (patch) | |
tree | 9ca819a60fe40c443260e516c462b70588768cfc /Source/cmCommands.cxx | |
parent | 50c900b85cc86a97c852b3aacde560dc2c0f28be (diff) | |
download | CMake-dcb3bf0548dd60422fe47f44945f41502e20c10e.zip CMake-dcb3bf0548dd60422fe47f44945f41502e20c10e.tar.gz CMake-dcb3bf0548dd60422fe47f44945f41502e20c10e.tar.bz2 |
ERR: On Mac we need GET_SOURCE_FILE_PROPERTY for building curl
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 96c5a6e..ebec240 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -44,6 +44,7 @@ #include "cmFindProgramCommand.cxx" #include "cmForEachCommand.cxx" #include "cmGetFilenameComponentCommand.cxx" +#include "cmGetSourceFilePropertyCommand.cxx" #include "cmIfCommand.cxx" #include "cmIncludeCommand.cxx" #include "cmIncludeDirectoryCommand.cxx" @@ -82,7 +83,6 @@ #include "cmFLTKWrapUICommand.cxx" #include "cmGetCMakePropertyCommand.cxx" #include "cmGetDirectoryPropertyCommand.cxx" -#include "cmGetSourceFilePropertyCommand.cxx" #include "cmGetTargetPropertyCommand.cxx" #include "cmITKWrapTclCommand.cxx" #include "cmIncludeExternalMSProjectCommand.cxx" @@ -139,6 +139,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmFindProgramCommand); commands.push_back(new cmForEachCommand); commands.push_back(new cmGetFilenameComponentCommand); + commands.push_back(new cmGetSourceFilePropertyCommand); commands.push_back(new cmIfCommand); commands.push_back(new cmIncludeCommand); commands.push_back(new cmIncludeDirectoryCommand); @@ -174,7 +175,6 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmFLTKWrapUICommand); commands.push_back(new cmGetCMakePropertyCommand); commands.push_back(new cmGetDirectoryPropertyCommand); - commands.push_back(new cmGetSourceFilePropertyCommand); commands.push_back(new cmGetTargetPropertyCommand); commands.push_back(new cmITKWrapTclCommand); commands.push_back(new cmIncludeExternalMSProjectCommand); |