2001-05-18 23:25:08 +04:00
/*=========================================================================
Program : Insight Segmentation & Registration Toolkit
Module : $ RCSfile $
Language : C + +
Date : $ Date $
Version : $ Revision $
2002-01-21 23:30:43 +03:00
Copyright ( c ) 2002 Insight Consortium . All rights reserved .
See ITKCopyright . txt or http : //www.itk.org/HTML/Copyright.htm for details.
2001-05-18 23:25:08 +04:00
2002-01-21 23:30:43 +03:00
This software is distributed WITHOUT ANY WARRANTY ; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE . See the above copyright notices for more information .
2001-05-18 23:25:08 +04:00
= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = */
# include "cmake.h"
# include "cmCacheManager.h"
// include the generator
# if defined(_WIN32) && !defined(__CYGWIN__)
# include "cmMSProjectGenerator.h"
2001-09-07 01:28:24 +04:00
# include "cmBorlandMakefileGenerator.h"
2001-11-15 02:12:22 +03:00
# include "cmNMakeMakefileGenerator.h"
2001-05-18 23:25:08 +04:00
# else
# include "cmUnixMakefileGenerator.h"
2001-05-21 17:50:24 +04:00
# endif
2001-09-07 01:28:24 +04:00
cmake : : cmake ( )
{
m_Verbose = false ;
# if defined(_WIN32) && !defined(__CYGWIN__)
cmMakefileGenerator : : RegisterGenerator ( new cmMSProjectGenerator ) ;
2001-11-15 17:55:50 +03:00
cmMakefileGenerator : : RegisterGenerator ( new cmNMakeMakefileGenerator ) ;
2001-09-07 01:28:24 +04:00
cmMakefileGenerator : : RegisterGenerator ( new cmBorlandMakefileGenerator ) ;
# else
cmMakefileGenerator : : RegisterGenerator ( new cmUnixMakefileGenerator ) ;
# endif
}
2001-05-18 23:25:08 +04:00
void cmake : : Usage ( const char * program )
{
2001-06-07 22:52:29 +04:00
std : : cerr < < " cmake version " < < cmMakefile : : GetMajorVersion ( )
2002-01-03 00:45:30 +03:00
< < " . " < < cmMakefile : : GetMinorVersion ( ) < < " - "
< < cmMakefile : : GetReleaseVersion ( ) < < " \n " ;
2002-01-07 23:49:07 +03:00
std : : cerr < < " Usage: " < < program < < " [srcdir] [options] \n "
2001-12-04 01:00:43 +03:00
< < " Where cmake is run from the directory where you want the object files written. If srcdir is not specified, the current directory is used for both source and object files. \n " ;
2001-11-21 16:47:37 +03:00
std : : cerr < < " Options are: \n " ;
2001-12-04 01:00:43 +03:00
std : : cerr < < " \n -i (puts cmake in wizard mode, not available for ccmake) \n " ;
std : : cerr < < " \n -DVAR:TYPE=VALUE (create a cache file entry) \n " ;
std : : cerr < < " \n -Cpath_to_initial_cache (a cmake list file that is used to pre-load the cache with values.) \n " ;
std : : cerr < < " \n [-GgeneratorName] (where generator name can be one of these: " ;
2001-09-07 01:28:24 +04:00
std : : vector < std : : string > names ;
cmMakefileGenerator : : GetRegisteredGenerators ( names ) ;
for ( std : : vector < std : : string > : : iterator i = names . begin ( ) ;
i ! = names . end ( ) ; + + i )
{
2001-11-15 02:12:22 +03:00
std : : cerr < < " \" " < < i - > c_str ( ) < < " \" " ;
2001-09-07 01:28:24 +04:00
}
2001-12-04 01:00:43 +03:00
std : : cerr < < " ) \n " ;
2001-05-18 23:25:08 +04:00
}
2001-11-21 01:51:03 +03:00
// Parse the args
2001-12-04 01:00:43 +03:00
void cmake : : SetCacheArgs ( cmMakefile & builder ,
const std : : vector < std : : string > & args )
2001-11-21 01:51:03 +03:00
{
for ( unsigned int i = 1 ; i < args . size ( ) ; + + i )
{
std : : string arg = args [ i ] ;
if ( arg . find ( " -D " , 0 ) = = 0 )
{
std : : string entry = arg . substr ( 2 ) ;
std : : string var , value ;
cmCacheManager : : CacheEntryType type ;
if ( cmCacheManager : : ParseEntry ( entry . c_str ( ) , var , value , type ) )
{
cmCacheManager : : GetInstance ( ) - > AddCacheEntry (
var . c_str ( ) ,
2002-01-18 22:07:17 +03:00
value . c_str ( ) ,
2001-11-21 01:51:03 +03:00
" No help, variable specified on the command line. " ,
type ) ;
}
else
{
std : : cerr < < " Parse error in command line argument: " < < arg < < " \n "
< < " Should be: VAR:type=value \n " ;
}
}
2001-12-04 01:00:43 +03:00
else if ( arg . find ( " -C " , 0 ) = = 0 )
{
std : : string path = arg . substr ( 2 ) ;
std : : cerr < < " loading initial cache file " < < path . c_str ( ) < < " \n " ;
if ( ! builder . ReadListFile ( path . c_str ( ) ) )
{
std : : cerr < < " Error in reading cmake initial cache file: "
< < path . c_str ( ) < < " \n " ;
}
}
2001-11-21 01:51:03 +03:00
}
}
2001-05-18 23:25:08 +04:00
// Parse the args
2001-05-30 23:28:55 +04:00
void cmake : : SetArgs ( cmMakefile & builder , const std : : vector < std : : string > & args )
2001-05-18 23:25:08 +04:00
{
m_Local = false ;
2001-09-07 01:28:24 +04:00
bool directoriesSet = false ;
2002-01-07 23:49:07 +03:00
// watch for cmake and cmake srcdir invocations
if ( args . size ( ) < = 2 )
{
directoriesSet = true ;
builder . SetHomeOutputDirectory
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
builder . SetStartOutputDirectory
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
if ( args . size ( ) = = 2 )
{
builder . SetHomeDirectory
( cmSystemTools : : CollapseFullPath ( args [ 1 ] . c_str ( ) ) . c_str ( ) ) ;
builder . SetStartDirectory
( cmSystemTools : : CollapseFullPath ( args [ 1 ] . c_str ( ) ) . c_str ( ) ) ;
}
else
{
builder . SetHomeDirectory
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
builder . SetStartDirectory
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
}
}
2001-05-18 23:25:08 +04:00
2001-06-12 16:30:12 +04:00
for ( unsigned int i = 1 ; i < args . size ( ) ; + + i )
2001-05-18 23:25:08 +04:00
{
2001-05-30 23:28:55 +04:00
std : : string arg = args [ i ] ;
2001-07-02 22:38:39 +04:00
if ( arg . find ( " -H " , 0 ) = = 0 )
2001-05-18 23:25:08 +04:00
{
2001-09-07 01:28:24 +04:00
directoriesSet = true ;
2001-05-18 23:25:08 +04:00
std : : string path = arg . substr ( 2 ) ;
builder . SetHomeDirectory ( path . c_str ( ) ) ;
}
2001-09-07 01:28:24 +04:00
else if ( arg . find ( " -S " , 0 ) = = 0 )
2001-05-18 23:25:08 +04:00
{
2001-09-07 01:28:24 +04:00
directoriesSet = true ;
2001-05-18 23:25:08 +04:00
m_Local = true ;
std : : string path = arg . substr ( 2 ) ;
builder . SetStartDirectory ( path . c_str ( ) ) ;
}
2001-09-07 01:28:24 +04:00
else if ( arg . find ( " -O " , 0 ) = = 0 )
2001-05-18 23:25:08 +04:00
{
2001-09-07 01:28:24 +04:00
directoriesSet = true ;
2001-05-18 23:25:08 +04:00
std : : string path = arg . substr ( 2 ) ;
builder . SetStartOutputDirectory ( path . c_str ( ) ) ;
}
2001-09-07 01:28:24 +04:00
else if ( arg . find ( " -B " , 0 ) = = 0 )
2001-05-18 23:25:08 +04:00
{
2001-09-07 01:28:24 +04:00
directoriesSet = true ;
2001-05-18 23:25:08 +04:00
std : : string path = arg . substr ( 2 ) ;
builder . SetHomeOutputDirectory ( path . c_str ( ) ) ;
}
2001-09-07 01:28:24 +04:00
else if ( arg . find ( " -V " , 0 ) = = 0 )
2001-05-18 23:25:08 +04:00
{
m_Verbose = true ;
}
2001-11-21 16:47:37 +03:00
else if ( arg . find ( " -D " , 0 ) = = 0 )
{
// skip for now
}
2001-12-04 01:00:43 +03:00
else if ( arg . find ( " -C " , 0 ) = = 0 )
{
// skip for now
}
2001-09-07 01:28:24 +04:00
else if ( arg . find ( " -G " , 0 ) = = 0 )
{
std : : string value = arg . substr ( 2 ) ;
cmMakefileGenerator * gen =
cmMakefileGenerator : : CreateGenerator ( value . c_str ( ) ) ;
if ( ! gen )
{
cmSystemTools : : Error ( " Could not create named generator " ,
value . c_str ( ) ) ;
}
else
{
builder . SetMakefileGenerator ( gen ) ;
}
}
2002-01-07 23:49:07 +03:00
// no option assume it is the path to the source
2001-09-07 01:28:24 +04:00
else
{
2002-01-07 23:49:07 +03:00
directoriesSet = true ;
builder . SetHomeOutputDirectory
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
builder . SetStartOutputDirectory
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
builder . SetHomeDirectory
( cmSystemTools : : CollapseFullPath ( arg . c_str ( ) ) . c_str ( ) ) ;
builder . SetStartDirectory
( cmSystemTools : : CollapseFullPath ( arg . c_str ( ) ) . c_str ( ) ) ;
2001-09-07 01:28:24 +04:00
}
}
if ( ! directoriesSet )
{
2002-01-07 23:49:07 +03:00
builder . SetHomeOutputDirectory
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
builder . SetStartOutputDirectory
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
builder . SetHomeDirectory
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
builder . SetStartDirectory
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
2001-05-18 23:25:08 +04:00
}
2001-05-21 17:32:11 +04:00
if ( ! m_Local )
{
builder . SetStartDirectory ( builder . GetHomeDirectory ( ) ) ;
builder . SetStartOutputDirectory ( builder . GetHomeOutputDirectory ( ) ) ;
}
2001-05-18 23:25:08 +04:00
}
2001-06-22 20:18:52 +04:00
// at the end of this CMAKE_ROOT and CMAKE_COMMAND should be added to the cache
2001-05-30 23:28:55 +04:00
void cmake : : AddCMakePaths ( const std : : vector < std : : string > & args )
2001-05-18 23:25:08 +04:00
{
2002-01-07 23:49:07 +03:00
// Find our own executable.
2001-05-30 23:28:55 +04:00
std : : string cMakeSelf = args [ 0 ] ;
2001-05-24 00:28:34 +04:00
cmSystemTools : : ConvertToUnixSlashes ( cMakeSelf ) ;
2002-01-07 23:49:07 +03:00
cMakeSelf = cmSystemTools : : FindProgram ( cMakeSelf . c_str ( ) ) ;
2001-06-22 00:34:13 +04:00
if ( ! cmSystemTools : : FileExists ( cMakeSelf . c_str ( ) ) )
{
2001-06-22 01:20:03 +04:00
# ifdef CMAKE_BUILD_DIR
cMakeSelf = CMAKE_BUILD_DIR ;
cMakeSelf + = " /Source/cmake " ;
2001-06-22 00:34:13 +04:00
# endif
2001-06-22 01:20:03 +04:00
}
2001-06-22 00:34:13 +04:00
# ifdef CMAKE_PREFIX
2001-06-22 01:41:23 +04:00
if ( ! cmSystemTools : : FileExists ( cMakeSelf . c_str ( ) ) )
2001-06-22 00:34:13 +04:00
{
2001-06-22 01:20:03 +04:00
cMakeSelf = CMAKE_PREFIX " /bin/cmake " ;
2001-06-22 00:34:13 +04:00
}
# endif
2001-06-22 01:41:23 +04:00
if ( ! cmSystemTools : : FileExists ( cMakeSelf . c_str ( ) ) )
2001-06-22 00:34:13 +04:00
{
2001-06-22 01:20:03 +04:00
cmSystemTools : : Error ( " CMAKE can not find the command line program cmake. "
" Attempted path: " , cMakeSelf . c_str ( ) ) ;
return ;
2001-06-22 00:34:13 +04:00
}
2001-06-22 01:20:03 +04:00
// Save the value in the cache
2001-05-23 23:49:18 +04:00
cmCacheManager : : GetInstance ( ) - > AddCacheEntry
( " CMAKE_COMMAND " ,
cmSystemTools : : EscapeSpaces ( cMakeSelf . c_str ( ) ) . c_str ( ) ,
" Path to CMake executable. " ,
cmCacheManager : : INTERNAL ) ;
2001-06-22 01:20:03 +04:00
2001-05-18 23:25:08 +04:00
// do CMAKE_ROOT, look for the environment variable first
std : : string cMakeRoot ;
2001-06-22 01:20:03 +04:00
std : : string modules ;
2001-05-18 23:25:08 +04:00
if ( getenv ( " CMAKE_ROOT " ) )
{
cMakeRoot = getenv ( " CMAKE_ROOT " ) ;
2001-06-22 01:20:03 +04:00
modules = cMakeRoot + " /Modules/FindVTK.cmake " ;
2001-05-18 23:25:08 +04:00
}
2001-06-22 01:20:03 +04:00
if ( ! cmSystemTools : : FileExists ( modules . c_str ( ) ) )
2001-05-18 23:25:08 +04:00
{
// next try exe/..
cMakeRoot = cmSystemTools : : GetProgramPath ( cMakeSelf . c_str ( ) ) ;
std : : string : : size_type slashPos = cMakeRoot . rfind ( " / " ) ;
if ( slashPos ! = std : : string : : npos )
{
cMakeRoot = cMakeRoot . substr ( 0 , slashPos ) ;
}
// is there no Modules direcory there?
2001-06-22 01:41:23 +04:00
modules = cMakeRoot + " /Modules/FindVTK.cmake " ;
2001-06-22 01:20:03 +04:00
}
2001-06-22 01:41:23 +04:00
if ( ! cmSystemTools : : FileExists ( modules . c_str ( ) ) )
2001-06-22 01:20:03 +04:00
{
// try exe/../share/cmake
2001-06-22 20:18:52 +04:00
cMakeRoot + = " /share/CMake " ;
modules = cMakeRoot + " /Modules/FindVTK.cmake " ;
2001-06-22 01:20:03 +04:00
}
2001-06-20 21:56:38 +04:00
# ifdef CMAKE_ROOT_DIR
2001-06-22 01:41:23 +04:00
if ( ! cmSystemTools : : FileExists ( modules . c_str ( ) ) )
2001-06-22 01:20:03 +04:00
{
2001-06-22 01:25:35 +04:00
// try compiled in root directory
2001-06-22 01:20:03 +04:00
cMakeRoot = CMAKE_ROOT_DIR ;
modules = cMakeRoot + " /Modules/FindVTK.cmake " ;
}
2001-05-18 23:25:08 +04:00
# endif
2001-06-22 01:20:03 +04:00
# ifdef CMAKE_PREFIX
2001-06-22 01:41:23 +04:00
if ( ! cmSystemTools : : FileExists ( modules . c_str ( ) ) )
2001-06-22 01:20:03 +04:00
{
2001-06-22 01:25:35 +04:00
// try compiled in install prefix
2001-06-22 01:20:03 +04:00
cMakeRoot = CMAKE_PREFIX " /share/CMake " ;
modules = cMakeRoot + " /Modules/FindVTK.cmake " ;
}
# endif
2001-06-22 01:41:23 +04:00
if ( ! cmSystemTools : : FileExists ( modules . c_str ( ) ) )
2001-06-22 01:20:03 +04:00
{
2001-06-22 01:25:35 +04:00
// try
cMakeRoot = cmSystemTools : : GetProgramPath ( cMakeSelf . c_str ( ) ) ;
cMakeRoot + = " /share/CMake " ;
2001-06-22 01:20:03 +04:00
modules = cMakeRoot + " /Modules/FindVTK.cmake " ;
}
2001-06-22 01:41:23 +04:00
if ( ! cmSystemTools : : FileExists ( modules . c_str ( ) ) )
2001-06-22 01:20:03 +04:00
{
// couldn't find modules
cmSystemTools : : Error ( " Could not find CMAKE_ROOT !!! \n " ,
" Modules directory not in directory: \n " ,
modules . c_str ( ) ) ;
return ;
2001-05-18 23:25:08 +04:00
}
cmCacheManager : : GetInstance ( ) - > AddCacheEntry
( " CMAKE_ROOT " , cMakeRoot . c_str ( ) ,
" Path to CMake installation. " , cmCacheManager : : INTERNAL ) ;
}
2001-07-26 02:30:27 +04:00
int cmake : : Generate ( const std : : vector < std : : string > & args , bool buildMakefiles )
2001-05-18 23:25:08 +04:00
{
2001-06-27 23:42:27 +04:00
if ( args . size ( ) = = 1 & & ! cmSystemTools : : FileExists ( " CMakeLists.txt " ) )
{
this - > Usage ( args [ 0 ] . c_str ( ) ) ;
return - 1 ;
}
2001-06-27 19:35:08 +04:00
// look for obvious request for help
for ( unsigned int i = 1 ; i < args . size ( ) ; + + i )
{
std : : string arg = args [ i ] ;
if ( arg . find ( " -help " , 0 ) ! = std : : string : : npos | |
arg . find ( " --help " , 0 ) ! = std : : string : : npos | |
arg . find ( " /? " , 0 ) ! = std : : string : : npos | |
arg . find ( " -usage " , 0 ) ! = std : : string : : npos )
{
this - > Usage ( args [ 0 ] . c_str ( ) ) ;
return - 1 ;
}
}
2001-05-18 23:25:08 +04:00
// Create a makefile
cmMakefile mf ;
2001-09-07 01:28:24 +04:00
// extract the directory arguments, could create a Generator
this - > SetArgs ( mf , args ) ;
// Read and parse the input makefile
mf . MakeStartDirectoriesCurrent ( ) ;
cmCacheManager : : GetInstance ( ) - > LoadCache ( & mf ) ;
2001-11-21 01:51:03 +03:00
// extract command line arguments that might add cache entries
this - > SetCacheArgs ( mf , args ) ;
2001-09-07 01:28:24 +04:00
// no generator specified on the command line
if ( ! mf . GetMakefileGenerator ( ) )
{
cmMakefileGenerator * gen ;
const char * genName = mf . GetDefinition ( " CMAKE_GENERATOR " ) ;
if ( genName )
{
gen = cmMakefileGenerator : : CreateGenerator ( genName ) ;
}
else
{
2001-10-03 23:49:52 +04:00
# if defined(__BORLANDC__)
gen = new cmBorlandMakefileGenerator ;
# elif defined(_WIN32) && !defined(__CYGWIN__)
2001-09-07 01:28:24 +04:00
gen = new cmMSProjectGenerator ;
2001-05-18 23:25:08 +04:00
# else
2001-09-07 01:28:24 +04:00
gen = new cmUnixMakefileGenerator ;
2001-05-18 23:25:08 +04:00
# endif
2001-09-07 01:28:24 +04:00
}
if ( ! gen )
{
cmSystemTools : : Error ( " Could not create generator " ) ;
return - 1 ;
}
mf . SetMakefileGenerator ( gen ) ;
// add the
}
cmMakefileGenerator * gen = mf . GetMakefileGenerator ( ) ;
2001-05-18 23:25:08 +04:00
gen - > SetLocal ( m_Local ) ;
2001-09-07 01:28:24 +04:00
if ( ! mf . GetDefinition ( " CMAKE_GENERATOR " ) )
{
mf . AddCacheDefinition ( " CMAKE_GENERATOR " ,
gen - > GetName ( ) ,
" Name of generator. " ,
cmCacheManager : : INTERNAL ) ;
}
2001-05-18 23:25:08 +04:00
// setup CMAKE_ROOT and CMAKE_COMMAND
2001-05-30 23:28:55 +04:00
this - > AddCMakePaths ( args ) ;
2001-05-18 23:25:08 +04:00
// compute system info
gen - > ComputeSystemInfo ( ) ;
// Transfer the cache into the makefile's definitions.
cmCacheManager : : GetInstance ( ) - > DefineCache ( & mf ) ;
std : : string lf = mf . GetStartDirectory ( ) ;
lf + = " /CMakeLists.txt " ;
if ( ! mf . ReadListFile ( lf . c_str ( ) ) )
{
2001-06-18 23:31:43 +04:00
this - > Usage ( args [ 0 ] . c_str ( ) ) ;
return - 1 ;
2001-05-18 23:25:08 +04:00
}
2001-07-26 02:30:27 +04:00
// if buildMakefiles, then call GenerateMakefile
if ( buildMakefiles )
{
mf . GenerateMakefile ( ) ;
}
else // do not build, but let the commands finalize
{
std : : vector < cmMakefile * > makefiles ;
mf . FindSubDirectoryCMakeListsFiles ( makefiles ) ;
for ( std : : vector < cmMakefile * > : : iterator i = makefiles . begin ( ) ;
i ! = makefiles . end ( ) ; + + i )
{
cmMakefile * mf = * i ;
mf - > FinalPass ( ) ;
delete mf ;
}
mf . FinalPass ( ) ;
}
2001-06-18 23:31:43 +04:00
// Before saving the cache
2001-06-19 23:50:39 +04:00
// if the project did not define one of the entries below, add them now
// so users can edit the values in the cache:
// LIBRARY_OUTPUT_PATH
// EXECUTABLE_OUTPUT_PATH
2001-06-18 23:31:43 +04:00
if ( ! cmCacheManager : : GetInstance ( ) - > GetCacheValue ( " LIBRARY_OUTPUT_PATH " ) )
{
cmCacheManager : : GetInstance ( ) - > AddCacheEntry ( " LIBRARY_OUTPUT_PATH " , " " ,
" Single output directory for building all libraries. " ,
cmCacheManager : : PATH ) ;
}
if ( ! cmCacheManager : : GetInstance ( ) - > GetCacheValue ( " EXECUTABLE_OUTPUT_PATH " ) )
{
cmCacheManager : : GetInstance ( ) - > AddCacheEntry ( " EXECUTABLE_OUTPUT_PATH " , " " ,
" Single output directory for building all executables. " ,
cmCacheManager : : PATH ) ;
2001-07-10 20:09:18 +04:00
}
2001-06-18 23:31:43 +04:00
2001-05-18 23:25:08 +04:00
cmCacheManager : : GetInstance ( ) - > SaveCache ( & mf ) ;
2001-06-18 23:31:43 +04:00
2001-05-18 23:25:08 +04:00
if ( m_Verbose )
{
cmCacheManager : : GetInstance ( ) - > PrintCache ( std : : cout ) ;
}
if ( cmSystemTools : : GetErrorOccuredFlag ( ) )
{
return - 1 ;
}
return 0 ;
}