diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-22 18:04:49 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-22 18:04:49 (GMT) |
commit | 43b9f184c2f9cacce2917577f9469f71f64885c5 (patch) | |
tree | cc06f70ce213992f992f739496b6ed3b401977be /Source/cmBootstrapCommands.cxx | |
parent | 36e272843154c6ea475fd3c19a39a0d27dbcafa5 (diff) | |
download | CMake-43b9f184c2f9cacce2917577f9469f71f64885c5.zip CMake-43b9f184c2f9cacce2917577f9469f71f64885c5.tar.gz CMake-43b9f184c2f9cacce2917577f9469f71f64885c5.tar.bz2 |
COMP: Fix apple bootstrap issues
Diffstat (limited to 'Source/cmBootstrapCommands.cxx')
-rw-r--r-- | Source/cmBootstrapCommands.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmBootstrapCommands.cxx b/Source/cmBootstrapCommands.cxx index c8769f0..7eafd34 100644 --- a/Source/cmBootstrapCommands.cxx +++ b/Source/cmBootstrapCommands.cxx @@ -43,6 +43,7 @@ #include "cmForEachCommand.cxx" #include "cmGetCMakePropertyCommand.cxx" #include "cmGetFilenameComponentCommand.cxx" +#include "cmGetSourceFilePropertyCommand.cxx" #include "cmIfCommand.cxx" #include "cmIncludeCommand.cxx" #include "cmIncludeDirectoryCommand.cxx" @@ -90,6 +91,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmForEachCommand); commands.push_back(new cmGetCMakePropertyCommand); 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); |