fixed bootstrap build to not use LoadCOmmandCOmmand

This commit is contained in:
Ken Martin 2002-08-27 08:36:03 -04:00
parent b8be208408
commit 716eb19819
2 changed files with 12 additions and 0 deletions

View File

@ -85,6 +85,10 @@ ADD_EXECUTABLE(cmake cmakemain.cxx)
ADD_EXECUTABLE(DumpDocumentation cmDumpDocumentation)
ADD_EXECUTABLE(ctest ctest.cxx)
IF (UNIX)
TARGET_LINK_LIBRARIES(CMakeLib ${CMAKE_DL_LIBS})
ENDIF (UNIX)
TARGET_LINK_LIBRARIES(cmake CMakeLib)
TARGET_LINK_LIBRARIES(DumpDocumentation CMakeLib)
TARGET_LINK_LIBRARIES(ctest CMakeLib)

View File

@ -87,7 +87,13 @@
#include "cmQTWrapUICommand.cxx"
#include "cmWrapExcludeFilesCommand.cxx"
// on regular builds add in the load command command
// we do not add it in on the bootstrap because it
// requires dynaic loading support etc, which makes
// the bootstrap configure file a mess
#if defined(CMAKE_BUILD_WITH_CMAKE)
#include "cmLoadCommandCommand.cxx"
#endif
void GetPredefinedCommands(std::list<cmCommand*>& commands)
{
@ -130,7 +136,9 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmLinkDirectoriesCommand);
commands.push_back(new cmLinkLibrariesCommand);
commands.push_back(new cmLoadCacheCommand);
#if defined(CMAKE_BUILD_WITH_CMAKE)
commands.push_back(new cmLoadCommandCommand);
#endif
commands.push_back(new cmMacroCommand);
commands.push_back(new cmMakeDirectoryCommand);
commands.push_back(new cmMarkAsAdvancedCommand);