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.
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
=========================================================================*/
|
2002-08-28 22:51:10 +04:00
|
|
|
// This class represents a cmake invocation. It is the top level class when
|
|
|
|
// running cmake. Most cmake based GUIS should primarily create an instance
|
|
|
|
// of this class and communicate with it.
|
2001-05-18 23:25:08 +04:00
|
|
|
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmStandardIncludes.h"
|
|
|
|
|
2002-08-24 00:13:34 +04:00
|
|
|
class cmake
|
2001-05-18 23:25:08 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the SourceFilesList from the SourceLists. This should only be
|
|
|
|
* done once to be safe.
|
|
|
|
*/
|
|
|
|
void Usage(const char *program);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate the SourceFilesList from the SourceLists. This should only be
|
2001-05-30 23:28:55 +04:00
|
|
|
* done once to be safe. The argument is a list of command line
|
|
|
|
* arguments. The first argument should be the name or full path
|
|
|
|
* to the command line version of cmake. For building a GUI,
|
|
|
|
* you would pass in the following arguments:
|
|
|
|
* /path/to/cmake -H/path/to/source -B/path/to/build
|
2001-07-26 02:30:27 +04:00
|
|
|
* If you only want to parse the CMakeLists.txt files,
|
|
|
|
* but not actually generate the makefiles, use buildMakefiles = false.
|
2001-05-18 23:25:08 +04:00
|
|
|
*/
|
2001-07-26 02:30:27 +04:00
|
|
|
int Generate(const std::vector<std::string>&, bool buildMakefiles = true);
|
2001-05-18 23:25:08 +04:00
|
|
|
|
2002-06-03 21:08:52 +04:00
|
|
|
/**
|
|
|
|
* Execute commands during the build process. Supports options such
|
|
|
|
* as echo, remove file etc.
|
|
|
|
*/
|
|
|
|
static int CMakeCommand(std::vector<std::string>&);
|
|
|
|
|
2001-11-21 01:51:03 +03:00
|
|
|
///! Parse command line arguments
|
2001-05-30 23:28:55 +04:00
|
|
|
void SetArgs(cmMakefile& builder, const std::vector<std::string>&);
|
2001-11-21 01:51:03 +03:00
|
|
|
///! Parse command line arguments that might set cache values
|
|
|
|
void SetCacheArgs(cmMakefile& builder, const std::vector<std::string>&);
|
2001-05-18 23:25:08 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate CMAKE_ROOT and CMAKE_COMMAND cache entries
|
|
|
|
*/
|
2002-06-27 17:35:21 +04:00
|
|
|
int AddCMakePaths(const std::vector<std::string>&);
|
2001-05-18 23:25:08 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* constructor
|
|
|
|
*/
|
2001-09-07 01:28:24 +04:00
|
|
|
cmake();
|
2002-08-23 21:46:32 +04:00
|
|
|
~cmake();
|
2002-08-28 22:51:10 +04:00
|
|
|
|
|
|
|
///! Create a named generator
|
|
|
|
cmMakefileGenerator* CreateGenerator(const char* name);
|
|
|
|
///! Register a generator
|
|
|
|
void RegisterGenerator(cmMakefileGenerator*);
|
|
|
|
///! Get the names of the current registered generators
|
|
|
|
void GetRegisteredGenerators(std::vector<std::string>& names);
|
|
|
|
|
|
|
|
///! get the cmCachemManager used by this invocation of cmake
|
|
|
|
cmCacheManager *GetCacheManager() {
|
|
|
|
return &m_CacheManager; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::map<cmStdString, cmMakefileGenerator*> m_RegisteredGenerators;
|
|
|
|
cmCacheManager m_CacheManager;
|
2001-09-07 01:28:24 +04:00
|
|
|
private:
|
2001-05-18 23:25:08 +04:00
|
|
|
bool m_Verbose;
|
|
|
|
bool m_Local;
|
|
|
|
};
|
|
|
|
|