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"
2002-06-03 21:08:52 +04:00
# include "time.h"
2001-05-18 23:25:08 +04:00
# include "cmCacheManager.h"
2002-09-06 21:06:23 +04:00
# include "cmMakefile.h"
# include "cmLocalGenerator.h"
2002-09-11 00:51:29 +04:00
# include "cmCommands.h"
# include "cmCommand.h"
2001-05-18 23:25:08 +04:00
// include the generator
# if defined(_WIN32) && !defined(__CYGWIN__)
2002-09-06 21:06:23 +04:00
# include "cmGlobalVisualStudio6Generator.h"
# include "cmGlobalVisualStudio7Generator.h"
# include "cmGlobalBorlandMakefileGenerator.h"
# include "cmGlobalNMakeMakefileGenerator.h"
2001-05-18 23:25:08 +04:00
# else
2002-09-06 21:06:23 +04:00
# include "cmGlobalUnixMakefileGenerator.h"
2001-05-21 17:50:24 +04:00
# endif
2002-09-11 01:24:25 +04:00
# include <stdio.h>
2001-09-07 01:28:24 +04:00
cmake : : cmake ( )
{
2002-09-12 22:37:27 +04:00
m_Local = false ;
2001-09-07 01:28:24 +04:00
m_Verbose = false ;
2002-09-12 19:08:06 +04:00
m_InTryCompile = false ;
2002-09-06 21:06:23 +04:00
m_CacheManager = new cmCacheManager ;
m_GlobalGenerator = 0 ;
2002-09-11 00:51:29 +04:00
this - > AddDefaultCommands ( ) ;
2001-09-07 01:28:24 +04:00
}
2002-08-23 21:46:32 +04:00
cmake : : ~ cmake ( )
{
2002-09-06 21:06:23 +04:00
delete m_CacheManager ;
if ( m_GlobalGenerator )
2002-08-28 22:51:10 +04:00
{
2002-09-06 21:06:23 +04:00
delete m_GlobalGenerator ;
m_GlobalGenerator = 0 ;
2002-08-28 22:51:10 +04:00
}
2002-09-11 00:51:29 +04:00
for ( RegisteredCommandsMap : : iterator j = m_Commands . begin ( ) ;
j ! = m_Commands . end ( ) ; + + j )
{
delete ( * j ) . second ;
}
}
bool cmake : : CommandExists ( const char * name ) const
{
return ( m_Commands . find ( name ) ! = m_Commands . end ( ) ) ;
2002-08-23 21:46:32 +04:00
}
2002-09-11 00:51:29 +04:00
cmCommand * cmake : : GetCommand ( const char * name )
{
cmCommand * rm = 0 ;
RegisteredCommandsMap : : iterator pos = m_Commands . find ( name ) ;
if ( pos ! = m_Commands . end ( ) )
{
rm = ( * pos ) . second ;
}
return rm ;
}
void cmake : : AddCommand ( cmCommand * wg )
{
std : : string name = wg - > GetName ( ) ;
m_Commands . insert ( RegisteredCommandsMap : : value_type ( name , wg ) ) ;
}
2002-08-23 21:46:32 +04:00
2001-05-18 23:25:08 +04:00
void cmake : : Usage ( const char * program )
{
2002-06-19 23:21:49 +04:00
cmStringStream errorStream ;
2002-02-01 21:08:50 +03:00
errorStream < < " cmake version " < < cmMakefile : : GetMajorVersion ( )
< < " . " < < cmMakefile : : GetMinorVersion ( ) < < " \n " ;
errorStream < < " 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 " ;
2002-02-01 21:08:50 +03:00
errorStream < < " Options are: \n " ;
errorStream < < " \n -i (puts cmake in wizard mode, not available for ccmake) \n " ;
errorStream < < " \n -DVAR:TYPE=VALUE (create a cache file entry) \n " ;
errorStream < < " \n -Cpath_to_initial_cache (a cmake list file that is used to pre-load the cache with values.) \n " ;
errorStream < < " \n [-GgeneratorName] (where generator name can be one of these: " ;
2001-09-07 01:28:24 +04:00
std : : vector < std : : string > names ;
2002-08-28 22:51:10 +04:00
this - > GetRegisteredGenerators ( names ) ;
2001-09-07 01:28:24 +04:00
for ( std : : vector < std : : string > : : iterator i = names . begin ( ) ;
i ! = names . end ( ) ; + + i )
{
2002-02-01 21:08:50 +03:00
errorStream < < " \" " < < i - > c_str ( ) < < " \" " ;
2001-09-07 01:28:24 +04:00
}
2002-06-19 23:21:49 +04:00
errorStream < < " ) \n " ;
2002-02-01 21:08:50 +03:00
2002-06-19 23:21:49 +04:00
cmSystemTools : : Error ( errorStream . str ( ) . c_str ( ) ) ;
2001-05-18 23:25:08 +04:00
}
2001-11-21 01:51:03 +03:00
// Parse the args
2002-09-06 21:06:23 +04:00
void cmake : : SetCacheArgs ( 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 ) )
{
2002-09-06 21:06:23 +04:00
this - > m_CacheManager - > AddCacheEntry ( var . c_str ( ) , 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 " ;
2002-09-06 21:06:23 +04:00
this - > ReadListFile ( path . c_str ( ) ) ;
}
}
}
void cmake : : ReadListFile ( const char * path )
{
// if a generator was not yet created, temporarily create one
cmGlobalGenerator * gg = this - > GetGlobalGenerator ( ) ;
2002-09-08 18:17:03 +04:00
bool created = false ;
2002-09-06 21:06:23 +04:00
// if a generator was not specified use a generic one
if ( ! gg )
{
gg = new cmGlobalGenerator ;
gg - > SetCMakeInstance ( this ) ;
created = true ;
}
// read in the list file to fill the cache
if ( path )
{
cmLocalGenerator * lg = gg - > CreateLocalGenerator ( ) ;
lg - > SetGlobalGenerator ( gg ) ;
if ( ! lg - > GetMakefile ( ) - > ReadListFile ( path ) )
{
std : : cerr < < " Error in reading cmake initial cache file: "
< < path < < " \n " ;
2001-12-04 01:00:43 +03:00
}
2001-11-21 01:51:03 +03:00
}
2002-09-06 21:06:23 +04:00
// free generic one if generated
if ( created )
{
delete gg ;
}
2001-11-21 01:51:03 +03:00
}
2001-05-18 23:25:08 +04:00
// Parse the args
2002-09-06 21:06:23 +04:00
void cmake : : SetArgs ( 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 ;
2002-09-06 21:06:23 +04:00
this - > SetHomeOutputDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
2002-09-06 21:06:23 +04:00
this - > SetStartOutputDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
if ( args . size ( ) = = 2 )
{
2002-09-06 21:06:23 +04:00
this - > SetHomeDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : CollapseFullPath ( args [ 1 ] . c_str ( ) ) . c_str ( ) ) ;
2002-09-06 21:06:23 +04:00
this - > SetStartDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : CollapseFullPath ( args [ 1 ] . c_str ( ) ) . c_str ( ) ) ;
}
else
{
2002-09-06 21:06:23 +04:00
this - > SetHomeDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
2002-09-06 21:06:23 +04:00
this - > SetStartDirectory
2002-01-07 23:49:07 +03:00
( 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 ) ;
2002-09-06 21:06:23 +04:00
this - > SetHomeDirectory ( path . c_str ( ) ) ;
2001-05-18 23:25:08 +04:00
}
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 ) ;
2002-09-06 21:06:23 +04:00
this - > SetStartDirectory ( path . c_str ( ) ) ;
2001-05-18 23:25:08 +04:00
}
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 ) ;
2002-09-06 21:06:23 +04:00
this - > SetStartOutputDirectory ( path . c_str ( ) ) ;
2001-05-18 23:25:08 +04:00
}
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 ) ;
2002-09-06 21:06:23 +04:00
this - > SetHomeOutputDirectory ( path . c_str ( ) ) ;
2001-05-18 23:25:08 +04:00
}
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 ) ;
2002-09-06 21:06:23 +04:00
cmGlobalGenerator * gen =
this - > CreateGlobalGenerator ( value . c_str ( ) ) ;
2001-09-07 01:28:24 +04:00
if ( ! gen )
{
cmSystemTools : : Error ( " Could not create named generator " ,
value . c_str ( ) ) ;
}
else
{
2002-09-06 21:06:23 +04:00
this - > SetGlobalGenerator ( gen ) ;
2001-09-07 01:28:24 +04:00
}
}
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 ;
2002-09-06 21:06:23 +04:00
this - > SetHomeOutputDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
2002-09-06 21:06:23 +04:00
this - > SetStartOutputDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
2002-09-06 21:06:23 +04:00
this - > SetHomeDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : CollapseFullPath ( arg . c_str ( ) ) . c_str ( ) ) ;
2002-09-06 21:06:23 +04:00
this - > SetStartDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : CollapseFullPath ( arg . c_str ( ) ) . c_str ( ) ) ;
2001-09-07 01:28:24 +04:00
}
}
if ( ! directoriesSet )
{
2002-09-06 21:06:23 +04:00
this - > SetHomeOutputDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
2002-09-06 21:06:23 +04:00
this - > SetStartOutputDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
2002-09-06 21:06:23 +04:00
this - > SetHomeDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
2002-09-06 21:06:23 +04:00
this - > SetStartDirectory
2002-01-07 23:49:07 +03:00
( cmSystemTools : : GetCurrentWorkingDirectory ( ) . c_str ( ) ) ;
2001-05-18 23:25:08 +04:00
}
2001-05-21 17:32:11 +04:00
if ( ! m_Local )
{
2002-09-06 21:06:23 +04:00
this - > SetStartDirectory ( this - > GetHomeDirectory ( ) ) ;
this - > SetStartOutputDirectory ( this - > GetHomeOutputDirectory ( ) ) ;
2001-05-21 17:32:11 +04:00
}
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
2002-09-06 21:06:23 +04:00
int cmake : : AddCMakePaths ( const char * arg0 )
2001-05-18 23:25:08 +04:00
{
2002-01-07 23:49:07 +03:00
// Find our own executable.
2002-06-27 17:35:21 +04:00
std : : vector < cmStdString > failures ;
2002-09-06 21:06:23 +04:00
std : : string cMakeSelf = arg0 ;
2001-05-24 00:28:34 +04:00
cmSystemTools : : ConvertToUnixSlashes ( cMakeSelf ) ;
2002-06-27 17:35:21 +04:00
failures . push_back ( 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
2002-06-03 21:08:52 +04:00
std : : string intdir = " . " ;
# ifdef CMAKE_INTDIR
intdir = CMAKE_INTDIR ;
# endif
cMakeSelf = CMAKE_BUILD_DIR ;
cMakeSelf + = " /Source/ " ;
cMakeSelf + = intdir ;
cMakeSelf + = " /cmake " ;
cMakeSelf + = cmSystemTools : : GetExecutableExtension ( ) ;
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
{
2002-06-27 17:35:21 +04:00
failures . push_back ( cMakeSelf ) ;
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
{
2002-06-27 17:35:21 +04:00
failures . push_back ( cMakeSelf ) ;
cmStringStream msg ;
msg < < " CMAKE can not find the command line program cmake. \n " ;
2002-09-06 21:06:23 +04:00
msg < < " argv[0] = \" " < < arg0 < < " \" \n " ;
2002-06-27 17:35:21 +04:00
msg < < " Attempted paths: \n " ;
std : : vector < cmStdString > : : iterator i ;
for ( i = failures . begin ( ) ; i ! = failures . end ( ) ; + + i )
{
msg < < " \" " < < i - > c_str ( ) < < " \" \n " ;
}
cmSystemTools : : Error ( msg . str ( ) . c_str ( ) ) ;
return 0 ;
2001-06-22 00:34:13 +04:00
}
2001-06-22 01:20:03 +04:00
// Save the value in the cache
2002-09-06 21:06:23 +04:00
this - > m_CacheManager - > AddCacheEntry
2002-03-26 01:03:54 +03:00
( " CMAKE_COMMAND " , cMakeSelf . c_str ( ) , " Path to CMake executable. " ,
2001-05-23 23:49:18 +04:00
cmCacheManager : : INTERNAL ) ;
2002-03-15 23:42:59 +03:00
2002-05-07 17:02:45 +04:00
// Find and save the command to edit the cache
std : : string editCacheCommand = cmSystemTools : : GetFilenamePath ( cMakeSelf ) +
" /ccmake " + cmSystemTools : : GetFilenameExtension ( cMakeSelf ) ;
if ( ! cmSystemTools : : FileExists ( editCacheCommand . c_str ( ) ) )
{
editCacheCommand = cmSystemTools : : GetFilenamePath ( cMakeSelf ) +
" /CMakeSetup " + cmSystemTools : : GetFilenameExtension ( cMakeSelf ) ;
}
if ( cmSystemTools : : FileExists ( editCacheCommand . c_str ( ) ) )
{
2002-09-06 21:06:23 +04:00
this - > m_CacheManager - > AddCacheEntry
2002-05-07 17:02:45 +04:00
( " CMAKE_EDIT_COMMAND " , editCacheCommand . c_str ( ) ,
" Path to cache edit program 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 " ;
}
2002-05-16 01:23:09 +04:00
if ( ! cmSystemTools : : FileExists ( modules . c_str ( ) ) )
{
// next try exe
cMakeRoot = cmSystemTools : : GetProgramPath ( cMakeSelf . c_str ( ) ) ;
// is there no Modules direcory there?
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 ( ) ) ;
2002-06-27 17:35:21 +04:00
return 0 ;
2001-05-18 23:25:08 +04:00
}
2002-09-06 21:06:23 +04:00
this - > m_CacheManager - > AddCacheEntry
2001-05-18 23:25:08 +04:00
( " CMAKE_ROOT " , cMakeRoot . c_str ( ) ,
" Path to CMake installation. " , cmCacheManager : : INTERNAL ) ;
2002-06-27 17:35:21 +04:00
return 1 ;
2001-05-18 23:25:08 +04:00
}
2002-05-16 01:23:09 +04:00
2002-06-03 21:08:52 +04:00
void CMakeCommandUsage ( const char * program )
{
2002-06-19 23:21:49 +04:00
cmStringStream errorStream ;
2002-06-03 21:08:52 +04:00
errorStream
< < " cmake version " < < cmMakefile : : GetMajorVersion ( )
< < " . " < < cmMakefile : : GetMinorVersion ( ) < < " \n " ;
errorStream
< < " Usage: " < < program < < " -E [command] [arguments ...] \n "
< < " Available commands: \n "
2002-07-10 22:34:38 +04:00
< < " chdir dir cmd [args]... - run command in a given directory \n "
2002-06-03 21:08:52 +04:00
< < " copy file destination - copy file to destination (either file or directory) \n "
< < " remove file1 file2 ... - remove the file(s) \n "
2002-06-19 23:21:49 +04:00
< < " time command [args] ... - run command and return elapsed time \n " ;
2002-06-03 21:08:52 +04:00
# if defined(_WIN32) && !defined(__CYGWIN__)
2002-06-19 23:21:49 +04:00
errorStream
2002-06-03 21:08:52 +04:00
< < " write_regv key value - write registry value \n "
2002-06-19 23:21:49 +04:00
< < " delete_regv key - delete registry value \n " ;
2002-06-03 21:08:52 +04:00
# endif
2002-06-19 23:21:49 +04:00
cmSystemTools : : Error ( errorStream . str ( ) . c_str ( ) ) ;
2002-06-03 21:08:52 +04:00
}
int cmake : : CMakeCommand ( std : : vector < std : : string > & args )
{
if ( args . size ( ) > 1 )
{
// Copy file
if ( args [ 1 ] = = " copy " & & args . size ( ) = = 4 )
{
cmSystemTools : : cmCopyFile ( args [ 2 ] . c_str ( ) , args [ 3 ] . c_str ( ) ) ;
return cmSystemTools : : GetErrorOccuredFlag ( ) ;
}
// Remove file
else if ( args [ 1 ] = = " remove " & & args . size ( ) > 2 )
{
for ( std : : string : : size_type cc = 2 ; cc < args . size ( ) ; cc + + )
{
if ( args [ cc ] ! = " -f " )
{
if ( args [ cc ] = = " \\ -f " )
{
args [ cc ] = " -f " ;
}
cmSystemTools : : RemoveFile ( args [ cc ] . c_str ( ) ) ;
}
}
return 0 ;
}
// Clock command
else if ( args [ 1 ] = = " time " & & args . size ( ) > 2 )
{
std : : string command = args [ 2 ] ;
std : : string output ;
for ( std : : string : : size_type cc = 3 ; cc < args . size ( ) ; cc + + )
{
command + = " " ;
command + = args [ cc ] ;
}
clock_t clock_start , clock_finish ;
time_t time_start , time_finish ;
time ( & time_start ) ;
clock_start = clock ( ) ;
cmSystemTools : : RunCommand ( command . c_str ( ) , output , 0 , true ) ;
clock_finish = clock ( ) ;
time ( & time_finish ) ;
std : : cout < < output . c_str ( ) ;
double clocks_per_sec = ( double ) CLOCKS_PER_SEC ;
std : : cout < < " Elapsed time: "
< < ( long ) ( time_finish - time_start ) < < " s. (time) "
< < " , "
< < ( double ) ( clock_finish - clock_start ) / clocks_per_sec
< < " s. (clock) "
< < " \n " ;
return 0 ;
}
2002-07-10 22:34:38 +04:00
// Clock command
else if ( args [ 1 ] = = " chdir " & & args . size ( ) > 2 )
{
std : : string directory = args [ 2 ] ;
std : : string command = args [ 3 ] ;
std : : string output ;
for ( std : : string : : size_type cc = 4 ; cc < args . size ( ) ; cc + + )
{
command + = " " ;
command + = args [ cc ] ;
}
2002-07-17 19:53:07 +04:00
int retval = 0 ;
if ( cmSystemTools : : RunCommand ( command . c_str ( ) , output , retval ,
directory . c_str ( ) , true ) )
2002-07-10 22:34:38 +04:00
{
std : : cout < < output . c_str ( ) ;
2002-07-17 19:53:07 +04:00
return retval ;
}
2002-07-10 22:34:38 +04:00
2002-07-17 19:53:07 +04:00
return 1 ;
2002-07-10 22:34:38 +04:00
}
2002-06-03 21:08:52 +04:00
# if defined(_WIN32) && !defined(__CYGWIN__)
// Write registry value
else if ( args [ 1 ] = = " write_regv " & & args . size ( ) > 3 )
{
return cmSystemTools : : WriteRegistryValue ( args [ 2 ] . c_str ( ) ,
args [ 3 ] . c_str ( ) ) ? 0 : 1 ;
}
// Delete registry value
else if ( args [ 1 ] = = " delete_regv " & & args . size ( ) > 2 )
{
return cmSystemTools : : DeleteRegistryValue ( args [ 2 ] . c_str ( ) ) ? 0 : 1 ;
}
# endif
}
: : CMakeCommandUsage ( args [ 0 ] . c_str ( ) ) ;
return 1 ;
}
2002-08-28 22:51:10 +04:00
void cmake : : GetRegisteredGenerators ( std : : vector < std : : string > & names )
{
2002-09-06 21:06:23 +04:00
# if defined(_WIN32) && !defined(__CYGWIN__)
names . push_back ( cmGlobalVisualStudio6Generator : : GetActualName ( ) ) ;
names . push_back ( cmGlobalVisualStudio7Generator : : GetActualName ( ) ) ;
names . push_back ( cmGlobalBorlandMakefileGenerator : : GetActualName ( ) ) ;
names . push_back ( cmGlobalNMakeMakefileGenerator : : GetActualName ( ) ) ;
# else
names . push_back ( cmGlobalUnixMakefileGenerator : : GetActualName ( ) ) ;
# endif
}
cmGlobalGenerator * cmake : : CreateGlobalGenerator ( const char * name )
{
cmGlobalGenerator * ret = 0 ;
# if defined(_WIN32) && !defined(__CYGWIN__)
if ( ! strcmp ( name , cmGlobalNMakeMakefileGenerator : : GetActualName ( ) ) )
{
ret = new cmGlobalNMakeMakefileGenerator ;
ret - > SetCMakeInstance ( this ) ;
}
if ( ! strcmp ( name , cmGlobalVisualStudio6Generator : : GetActualName ( ) ) )
{
ret = new cmGlobalVisualStudio6Generator ;
ret - > SetCMakeInstance ( this ) ;
}
if ( ! strcmp ( name , cmGlobalVisualStudio7Generator : : GetActualName ( ) ) )
{
ret = new cmGlobalVisualStudio7Generator ;
ret - > SetCMakeInstance ( this ) ;
}
if ( ! strcmp ( name , cmGlobalBorlandMakefileGenerator : : GetActualName ( ) ) )
{
ret = new cmGlobalBorlandMakefileGenerator ;
ret - > SetCMakeInstance ( this ) ;
}
# else
if ( ! strcmp ( name , cmGlobalUnixMakefileGenerator : : GetActualName ( ) ) )
2002-08-28 22:51:10 +04:00
{
2002-09-06 21:06:23 +04:00
ret = new cmGlobalUnixMakefileGenerator ;
ret - > SetCMakeInstance ( this ) ;
2002-08-28 22:51:10 +04:00
}
2002-09-06 21:06:23 +04:00
# endif
return ret ;
2002-08-28 22:51:10 +04:00
}
2002-09-06 21:06:23 +04:00
void cmake : : SetHomeDirectory ( const char * dir )
{
m_cmHomeDirectory = dir ;
cmSystemTools : : ConvertToUnixSlashes ( m_cmHomeDirectory ) ;
}
2002-08-28 22:51:10 +04:00
2002-09-06 21:06:23 +04:00
void cmake : : SetHomeOutputDirectory ( const char * lib )
2002-08-28 22:51:10 +04:00
{
2002-09-06 21:06:23 +04:00
m_HomeOutputDirectory = lib ;
cmSystemTools : : ConvertToUnixSlashes ( m_HomeOutputDirectory ) ;
}
void cmake : : SetGlobalGenerator ( cmGlobalGenerator * gg )
{
// delete the old generator
if ( m_GlobalGenerator )
2002-08-28 22:51:10 +04:00
{
2002-09-06 21:06:23 +04:00
delete m_GlobalGenerator ;
2002-08-28 22:51:10 +04:00
}
2002-09-06 21:06:23 +04:00
// set the new
m_GlobalGenerator = gg ;
// set the cmake instance just to be sure
gg - > SetCMakeInstance ( this ) ;
2002-08-28 22:51:10 +04:00
}
2002-09-06 21:06:23 +04:00
int cmake : : Configure ( const char * arg0 , const std : : vector < std : : string > * args )
2002-08-28 22:51:10 +04:00
{
2002-09-13 18:41:20 +04:00
// Read in the cache, but not for a try compile
// because there will be no cache
if ( ! m_InTryCompile )
{
m_CacheManager - > LoadCache ( this - > GetHomeOutputDirectory ( ) ) ;
}
// do a sanity check on some values
2002-09-06 21:06:23 +04:00
if ( m_CacheManager - > GetCacheValue ( " CMAKE_HOME_DIRECTORY " ) )
{
std : : string cacheStart =
m_CacheManager - > GetCacheValue ( " CMAKE_HOME_DIRECTORY " ) ;
cacheStart + = " /CMakeLists.txt " ;
std : : string currentStart = this - > GetHomeDirectory ( ) ;
currentStart + = " /CMakeLists.txt " ;
if ( ! cmSystemTools : : SameFile ( cacheStart . c_str ( ) , currentStart . c_str ( ) ) )
{
std : : string message = " Error: source : " ;
message + = currentStart ;
message + = " \n Does not match source used to generate cache: " ;
message + = cacheStart ;
message + = " \n Re-run cmake with a different source directory. " ;
cmSystemTools : : Error ( message . c_str ( ) ) ;
return - 2 ;
}
}
else
{
m_CacheManager - > AddCacheEntry ( " CMAKE_HOME_DIRECTORY " ,
this - > GetHomeDirectory ( ) ,
" Start directory with the top level CMakeLists.txt file for this project " ,
cmCacheManager : : INTERNAL ) ;
}
// extract command line arguments that might add cache entries
if ( args )
{
this - > SetCacheArgs ( * args ) ;
}
// setup CMAKE_ROOT and CMAKE_COMMAND
if ( ! this - > AddCMakePaths ( arg0 ) )
{
return - 3 ;
}
// no generator specified on the command line
if ( ! m_GlobalGenerator )
{
const char * genName = m_CacheManager - > GetCacheValue ( " CMAKE_GENERATOR " ) ;
if ( genName )
{
m_GlobalGenerator = this - > CreateGlobalGenerator ( genName ) ;
}
else
{
2002-09-10 23:36:11 +04:00
# if defined(__BORLANDC__) && defined(_WIN32)
2002-09-06 21:06:23 +04:00
this - > SetGlobalGenerator ( new cmGlobalBorlandMakefileGenerator ) ;
# elif defined(_WIN32) && !defined(__CYGWIN__)
this - > SetGlobalGenerator ( new cmGlobalVisualStudio6Generator ) ;
# else
this - > SetGlobalGenerator ( new cmGlobalUnixMakefileGenerator ) ;
# endif
}
if ( ! m_GlobalGenerator )
{
cmSystemTools : : Error ( " Could not create generator " ) ;
return - 1 ;
}
}
const char * genName = m_CacheManager - > GetCacheValue ( " CMAKE_GENERATOR " ) ;
if ( genName )
2002-08-28 22:51:10 +04:00
{
2002-09-06 21:06:23 +04:00
if ( strcmp ( m_GlobalGenerator - > GetName ( ) , genName ) ! = 0 )
2002-08-28 22:51:10 +04:00
{
2002-09-06 21:06:23 +04:00
std : : string message = " Error: generator : " ;
message + = m_GlobalGenerator - > GetName ( ) ;
message + = " \n Does not match the generator used previously: " ;
message + = genName ;
message + =
" \n Either remove the CMakeCache.txt file or choose a different "
" binary directory. " ;
cmSystemTools : : Error ( message . c_str ( ) ) ;
return - 2 ;
2002-08-28 22:51:10 +04:00
}
}
2002-09-06 21:06:23 +04:00
if ( ! m_CacheManager - > GetCacheValue ( " CMAKE_GENERATOR " ) )
{
m_CacheManager - > AddCacheEntry ( " CMAKE_GENERATOR " , m_GlobalGenerator - > GetName ( ) ,
" Name of generator. " ,
cmCacheManager : : INTERNAL ) ;
}
2002-09-13 18:41:20 +04:00
// reset any system configuration information, except for when we are
// InTryCompile. With TryCompile the system info is taken from the parent's
// info to save time
if ( ! m_InTryCompile )
{
m_GlobalGenerator - > ClearEnabledLanguages ( ) ;
}
2002-09-06 21:06:23 +04:00
// actually do the configure
m_GlobalGenerator - > Configure ( ) ;
// Before saving the cache
// 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
if ( ! m_CacheManager - > GetCacheValue ( " LIBRARY_OUTPUT_PATH " ) )
{
m_CacheManager - > AddCacheEntry ( " LIBRARY_OUTPUT_PATH " , " " ,
" Single output directory for building all libraries. " ,
cmCacheManager : : PATH ) ;
}
if ( ! m_CacheManager - > GetCacheValue ( " EXECUTABLE_OUTPUT_PATH " ) )
{
m_CacheManager - > AddCacheEntry ( " EXECUTABLE_OUTPUT_PATH " , " " ,
" Single output directory for building all executables. " ,
cmCacheManager : : PATH ) ;
}
this - > m_CacheManager - > SaveCache ( this - > GetHomeOutputDirectory ( ) ) ;
if ( cmSystemTools : : GetErrorOccuredFlag ( ) )
{
return - 1 ;
}
2002-08-28 22:51:10 +04:00
return 0 ;
}
2002-09-06 21:06:23 +04:00
// handle a command line invocation
int cmake : : Run ( const std : : vector < std : : string > & args )
{
// a quick check for args
if ( args . size ( ) = = 1 & & ! cmSystemTools : : FileExists ( " CMakeLists.txt " ) )
{
this - > Usage ( args [ 0 ] . c_str ( ) ) ;
return - 1 ;
}
// 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 ;
}
}
// Process the arguments
this - > SetArgs ( args ) ;
// if we are local do the local thing, otherwise do global
if ( m_Local )
{
return this - > LocalGenerate ( ) ;
}
// otherwise global
int ret = this - > Configure ( args [ 0 ] . c_str ( ) , & args ) ;
if ( ret )
{
return ret ;
}
return this - > Generate ( ) ;
}
int cmake : : Generate ( )
{
m_GlobalGenerator - > Generate ( ) ;
if ( cmSystemTools : : GetErrorOccuredFlag ( ) )
{
return - 1 ;
}
return 0 ;
}
int cmake : : LocalGenerate ( )
{
// Read in the cache
m_CacheManager - > LoadCache ( this - > GetHomeOutputDirectory ( ) ) ;
// create the generator based on the cache if it isn't already there
const char * genName = m_CacheManager - > GetCacheValue ( " CMAKE_GENERATOR " ) ;
if ( genName )
{
m_GlobalGenerator = this - > CreateGlobalGenerator ( genName ) ;
}
else
{
cmSystemTools : : Error ( " Could local Generate called without the GENERATOR being specified in the CMakeCache " ) ;
return - 1 ;
}
// do the local generate
m_GlobalGenerator - > LocalGenerate ( ) ;
if ( cmSystemTools : : GetErrorOccuredFlag ( ) )
{
return - 1 ;
}
return 0 ;
}
unsigned int cmake : : GetMajorVersion ( )
{
return cmMakefile : : GetMajorVersion ( ) ;
}
unsigned int cmake : : GetMinorVersion ( )
{
return cmMakefile : : GetMinorVersion ( ) ;
}
const char * cmake : : GetReleaseVersion ( )
{
return cmMakefile : : GetReleaseVersion ( ) ;
}
const char * cmake : : GetCacheDefinition ( const char * name ) const
{
return m_CacheManager - > GetCacheValue ( name ) ;
}
2002-09-11 00:51:29 +04:00
int cmake : : DumpDocumentationToFile ( std : : ostream & f )
{
// Loop over all registered commands and print out documentation
const char * name ;
const char * terse ;
const char * full ;
char tmp [ 1024 ] ;
sprintf ( tmp , " Version %d.%d " , cmake : : GetMajorVersion ( ) ,
cmake : : GetMinorVersion ( ) ) ;
f < < " <html> \n " ;
f < < " <h1>Documentation for commands of CMake " < < tmp < < " </h1> \n " ;
f < < " <ul> \n " ;
for ( RegisteredCommandsMap : : iterator j = m_Commands . begin ( ) ;
j ! = m_Commands . end ( ) ; + + j )
{
name = ( * j ) . second - > GetName ( ) ;
terse = ( * j ) . second - > GetTerseDocumentation ( ) ;
full = ( * j ) . second - > GetFullDocumentation ( ) ;
f < < " <li><b> " < < name < < " </b> - " < < terse < < std : : endl
< < " <br><i>Usage:</i> " < < full < < " </li> " < < std : : endl < < std : : endl ;
}
f < < " </ul></html> \n " ;
return 1 ;
}
void cmake : : AddDefaultCommands ( )
{
std : : list < cmCommand * > commands ;
GetPredefinedCommands ( commands ) ;
for ( std : : list < cmCommand * > : : iterator i = commands . begin ( ) ;
i ! = commands . end ( ) ; + + i )
{
this - > AddCommand ( * i ) ;
}
}