2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2001-05-18 23:25:08 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2001-05-18 23:25:08 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2001-05-18 23:25:08 +04:00
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmCacheManager.h"
|
2002-09-06 21:06:23 +04:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
2007-06-16 00:09:30 +04:00
|
|
|
#include "cmExternalMakefileProjectGenerator.h"
|
2002-09-11 00:51:29 +04:00
|
|
|
#include "cmCommands.h"
|
|
|
|
#include "cmCommand.h"
|
2005-10-12 21:51:15 +04:00
|
|
|
#include "cmFileTimeComparison.h"
|
2006-12-07 17:45:32 +03:00
|
|
|
#include "cmSourceFile.h"
|
|
|
|
#include "cmTest.h"
|
2013-09-14 00:09:52 +04:00
|
|
|
#include "cmDocumentationFormatter.h"
|
2001-05-18 23:25:08 +04:00
|
|
|
|
2004-10-27 18:47:14 +04:00
|
|
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
2010-11-09 23:37:51 +03:00
|
|
|
# include "cmGraphVizWriter.h"
|
2004-10-27 18:47:14 +04:00
|
|
|
# include "cmVariableWatch.h"
|
2014-04-17 19:20:13 +04:00
|
|
|
# include <cmsys/SystemInformation.hxx>
|
2004-10-27 18:47:14 +04:00
|
|
|
#endif
|
2004-10-26 20:55:20 +04:00
|
|
|
|
2007-06-04 21:48:11 +04:00
|
|
|
#include <cmsys/Glob.hxx>
|
|
|
|
#include <cmsys/RegularExpression.hxx>
|
2014-01-04 09:47:13 +04:00
|
|
|
#include <cmsys/FStream.hxx>
|
2006-05-23 17:11:46 +04:00
|
|
|
|
2004-10-12 17:50:36 +04:00
|
|
|
// only build kdevelop generator on non-windows platforms
|
|
|
|
// when not bootstrapping cmake
|
|
|
|
#if !defined(_WIN32)
|
|
|
|
# if defined(CMAKE_BUILD_WITH_CMAKE)
|
|
|
|
# define CMAKE_USE_KDEVELOP
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2007-08-01 17:18:50 +04:00
|
|
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
|
|
|
# define CMAKE_USE_ECLIPSE
|
|
|
|
#endif
|
|
|
|
|
2006-02-01 02:50:16 +03:00
|
|
|
#if defined(__MINGW32__) && !defined(CMAKE_BUILD_WITH_CMAKE)
|
|
|
|
# define CMAKE_BOOT_MINGW
|
|
|
|
#endif
|
|
|
|
|
2001-05-18 23:25:08 +04:00
|
|
|
// include the generator
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
2006-02-01 03:34:57 +03:00
|
|
|
# if !defined(CMAKE_BOOT_MINGW)
|
|
|
|
# include "cmGlobalVisualStudio6Generator.h"
|
2004-10-11 19:32:14 +04:00
|
|
|
# include "cmGlobalVisualStudio7Generator.h"
|
|
|
|
# include "cmGlobalVisualStudio71Generator.h"
|
|
|
|
# include "cmGlobalVisualStudio8Generator.h"
|
2007-09-17 23:21:47 +04:00
|
|
|
# include "cmGlobalVisualStudio9Generator.h"
|
2009-06-26 00:41:57 +04:00
|
|
|
# include "cmGlobalVisualStudio10Generator.h"
|
2011-09-23 17:07:40 +04:00
|
|
|
# include "cmGlobalVisualStudio11Generator.h"
|
2013-06-29 00:12:08 +04:00
|
|
|
# include "cmGlobalVisualStudio12Generator.h"
|
2006-02-01 02:50:16 +03:00
|
|
|
# include "cmGlobalBorlandMakefileGenerator.h"
|
|
|
|
# include "cmGlobalNMakeMakefileGenerator.h"
|
2009-11-05 23:00:15 +03:00
|
|
|
# include "cmGlobalJOMMakefileGenerator.h"
|
2007-11-19 22:22:38 +03:00
|
|
|
# define CMAKE_HAVE_VS_GENERATORS
|
2006-02-01 02:50:16 +03:00
|
|
|
# endif
|
2005-12-23 00:42:36 +03:00
|
|
|
# include "cmGlobalMSYSMakefileGenerator.h"
|
|
|
|
# include "cmGlobalMinGWMakefileGenerator.h"
|
2001-05-18 23:25:08 +04:00
|
|
|
#else
|
2001-05-21 17:50:24 +04:00
|
|
|
#endif
|
2014-03-17 22:30:38 +04:00
|
|
|
#if defined(CMAKE_USE_WMAKE)
|
|
|
|
# include "cmGlobalWatcomWMakeGenerator.h"
|
|
|
|
#endif
|
2005-05-12 18:49:56 +04:00
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
2012-07-20 12:53:34 +04:00
|
|
|
#include "cmGlobalNinjaGenerator.h"
|
2014-01-10 11:20:11 +04:00
|
|
|
#include "cmExtraCodeLiteGenerator.h"
|
2004-10-12 17:50:36 +04:00
|
|
|
|
2010-01-13 20:58:08 +03:00
|
|
|
#if !defined(CMAKE_BOOT_MINGW)
|
2007-07-18 18:19:33 +04:00
|
|
|
# include "cmExtraCodeBlocksGenerator.h"
|
|
|
|
#endif
|
2012-10-11 02:01:48 +04:00
|
|
|
#include "cmExtraSublimeTextGenerator.h"
|
2013-11-16 18:41:32 +04:00
|
|
|
#include "cmExtraKateGenerator.h"
|
2007-07-18 18:19:33 +04:00
|
|
|
|
2004-10-12 17:50:36 +04:00
|
|
|
#ifdef CMAKE_USE_KDEVELOP
|
|
|
|
# include "cmGlobalKdevelopGenerator.h"
|
|
|
|
#endif
|
2001-05-21 17:50:24 +04:00
|
|
|
|
2007-08-01 17:18:50 +04:00
|
|
|
#ifdef CMAKE_USE_ECLIPSE
|
|
|
|
# include "cmExtraEclipseCDT4Generator.h"
|
|
|
|
#endif
|
|
|
|
|
2003-05-24 00:40:55 +04:00
|
|
|
#include <stdlib.h> // required for atoi
|
2002-09-11 01:24:25 +04:00
|
|
|
|
2006-03-22 21:04:49 +03:00
|
|
|
#if defined( __APPLE__ )
|
|
|
|
# if defined(CMAKE_BUILD_WITH_CMAKE)
|
|
|
|
# include "cmGlobalXCodeGenerator.h"
|
|
|
|
# define CMAKE_USE_XCODE 1
|
|
|
|
# endif
|
2004-10-11 19:32:14 +04:00
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <sys/resource.h>
|
2003-04-16 23:40:24 +04:00
|
|
|
#endif
|
2002-10-24 23:39:25 +04:00
|
|
|
|
2005-07-03 06:25:43 +04:00
|
|
|
#include <sys/stat.h> // struct stat
|
|
|
|
|
2007-11-10 16:15:13 +03:00
|
|
|
static bool cmakeCheckStampFile(const char* stampName);
|
2008-03-12 00:25:49 +03:00
|
|
|
static bool cmakeCheckStampList(const char* stampName);
|
2007-11-10 16:15:13 +03:00
|
|
|
|
2010-09-01 18:22:08 +04:00
|
|
|
void cmWarnUnusedCliWarning(const std::string& variable,
|
|
|
|
int, void* ctx, const char*, const cmMakefile*)
|
|
|
|
{
|
|
|
|
cmake* cm = reinterpret_cast<cmake*>(ctx);
|
|
|
|
cm->MarkCliAsUsed(variable);
|
|
|
|
}
|
|
|
|
|
2001-09-07 01:28:24 +04:00
|
|
|
cmake::cmake()
|
|
|
|
{
|
2008-07-31 18:33:25 +04:00
|
|
|
this->Trace = false;
|
2010-08-25 20:35:40 +04:00
|
|
|
this->WarnUninitialized = false;
|
2010-08-25 20:36:21 +04:00
|
|
|
this->WarnUnused = false;
|
2010-09-01 18:22:08 +04:00
|
|
|
this->WarnUnusedCli = true;
|
2010-09-01 19:24:20 +04:00
|
|
|
this->CheckSystemVars = false;
|
2008-03-12 05:50:35 +03:00
|
|
|
this->SuppressDevWarnings = false;
|
2008-03-22 17:24:06 +03:00
|
|
|
this->DoSuppressDevWarnings = false;
|
2006-10-06 19:11:59 +04:00
|
|
|
this->DebugOutput = false;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->DebugTryCompile = false;
|
|
|
|
this->ClearBuildSystem = false;
|
|
|
|
this->FileComparison = new cmFileTimeComparison;
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2008-03-01 23:20:35 +03:00
|
|
|
this->Policies = new cmPolicies();
|
2008-03-13 00:02:30 +03:00
|
|
|
this->InitializeProperties();
|
2006-12-07 17:45:32 +03:00
|
|
|
|
2002-10-24 23:39:25 +04:00
|
|
|
#ifdef __APPLE__
|
|
|
|
struct rlimit rlp;
|
|
|
|
if(!getrlimit(RLIMIT_STACK, &rlp))
|
|
|
|
{
|
2006-03-15 20:02:34 +03:00
|
|
|
if(rlp.rlim_cur != rlp.rlim_max)
|
2002-10-24 23:39:25 +04:00
|
|
|
{
|
2006-03-15 20:02:34 +03:00
|
|
|
rlp.rlim_cur = rlp.rlim_max;
|
2002-10-24 23:39:25 +04:00
|
|
|
setrlimit(RLIMIT_STACK, &rlp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Verbose = false;
|
|
|
|
this->InTryCompile = false;
|
2009-03-13 17:53:47 +03:00
|
|
|
this->CacheManager = new cmCacheManager(this);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GlobalGenerator = 0;
|
|
|
|
this->ProgressCallback = 0;
|
|
|
|
this->ProgressCallbackClientData = 0;
|
2011-07-13 20:59:51 +04:00
|
|
|
this->CurrentWorkingMode = NORMAL_MODE;
|
2010-10-31 16:46:09 +03:00
|
|
|
|
2004-10-27 18:47:14 +04:00
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
2006-03-15 19:02:08 +03:00
|
|
|
this->VariableWatch = new cmVariableWatch;
|
2004-10-27 18:47:14 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
this->AddDefaultGenerators();
|
2007-06-08 19:57:16 +04:00
|
|
|
this->AddDefaultExtraGenerators();
|
2004-10-27 18:47:14 +04:00
|
|
|
this->AddDefaultCommands();
|
|
|
|
|
2006-02-15 18:22:55 +03:00
|
|
|
// Make sure we can capture the build tool output.
|
|
|
|
cmSystemTools::EnableVSConsoleOutput();
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
|
|
|
|
2002-08-23 21:46:32 +04:00
|
|
|
cmake::~cmake()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
delete this->CacheManager;
|
2008-03-01 23:20:35 +03:00
|
|
|
delete this->Policies;
|
2006-03-15 19:02:08 +03:00
|
|
|
if (this->GlobalGenerator)
|
2002-08-28 22:51:10 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
delete this->GlobalGenerator;
|
|
|
|
this->GlobalGenerator = 0;
|
2002-08-28 22:51:10 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
for(RegisteredCommandsMap::iterator j = this->Commands.begin();
|
|
|
|
j != this->Commands.end(); ++j)
|
2002-09-11 00:51:29 +04:00
|
|
|
{
|
|
|
|
delete (*j).second;
|
|
|
|
}
|
2012-11-19 19:13:54 +04:00
|
|
|
for(RegisteredGeneratorsVector::iterator j = this->Generators.begin();
|
2012-11-19 18:48:33 +04:00
|
|
|
j != this->Generators.end(); ++j)
|
|
|
|
{
|
2012-11-19 19:13:54 +04:00
|
|
|
delete *j;
|
2012-11-19 18:48:33 +04:00
|
|
|
}
|
2004-10-27 18:47:14 +04:00
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
2006-03-15 19:02:08 +03:00
|
|
|
delete this->VariableWatch;
|
2004-10-27 18:47:14 +04:00
|
|
|
#endif
|
2006-03-15 19:02:08 +03:00
|
|
|
delete this->FileComparison;
|
2002-09-11 00:51:29 +04:00
|
|
|
}
|
|
|
|
|
2008-03-13 00:02:30 +03:00
|
|
|
void cmake::InitializeProperties()
|
|
|
|
{
|
|
|
|
this->Properties.clear();
|
|
|
|
this->Properties.SetCMakeInstance(this);
|
2008-03-13 22:34:17 +03:00
|
|
|
this->AccessedProperties.clear();
|
|
|
|
this->PropertyDefinitions.clear();
|
2008-03-13 00:02:30 +03:00
|
|
|
|
|
|
|
// initialize properties
|
|
|
|
cmTarget::DefineProperties(this);
|
|
|
|
cmMakefile::DefineProperties(this);
|
|
|
|
}
|
|
|
|
|
2005-06-16 22:56:15 +04:00
|
|
|
void cmake::CleanupCommandsAndMacros()
|
|
|
|
{
|
2008-03-13 00:02:30 +03:00
|
|
|
this->InitializeProperties();
|
2005-06-16 22:56:15 +04:00
|
|
|
std::vector<cmCommand*> commands;
|
2006-03-15 19:02:08 +03:00
|
|
|
for(RegisteredCommandsMap::iterator j = this->Commands.begin();
|
|
|
|
j != this->Commands.end(); ++j)
|
2005-06-16 22:56:15 +04:00
|
|
|
{
|
2007-12-14 01:39:53 +03:00
|
|
|
if ( !j->second->IsA("cmMacroHelperCommand") &&
|
2007-12-03 21:35:41 +03:00
|
|
|
!j->second->IsA("cmFunctionHelperCommand"))
|
2005-06-16 22:56:15 +04:00
|
|
|
{
|
|
|
|
commands.push_back(j->second);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delete j->second;
|
|
|
|
}
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Commands.erase(this->Commands.begin(), this->Commands.end());
|
2005-06-16 22:56:15 +04:00
|
|
|
std::vector<cmCommand*>::iterator it;
|
|
|
|
for ( it = commands.begin(); it != commands.end();
|
|
|
|
++ it )
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Commands[cmSystemTools::LowerCase((*it)->GetName())] = *it;
|
2005-06-16 22:56:15 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-25 05:19:17 +04:00
|
|
|
bool cmake::CommandExists(const std::string& name) const
|
2002-09-11 00:51:29 +04:00
|
|
|
{
|
2005-06-16 22:56:15 +04:00
|
|
|
std::string sName = cmSystemTools::LowerCase(name);
|
2006-03-15 19:02:08 +03:00
|
|
|
return (this->Commands.find(sName) != this->Commands.end());
|
2002-08-23 21:46:32 +04:00
|
|
|
}
|
|
|
|
|
2014-02-25 05:19:17 +04:00
|
|
|
cmCommand *cmake::GetCommand(const std::string& name)
|
2002-09-11 00:51:29 +04:00
|
|
|
{
|
|
|
|
cmCommand* rm = 0;
|
2005-06-16 22:56:15 +04:00
|
|
|
std::string sName = cmSystemTools::LowerCase(name);
|
2006-03-15 19:02:08 +03:00
|
|
|
RegisteredCommandsMap::iterator pos = this->Commands.find(sName);
|
|
|
|
if (pos != this->Commands.end())
|
2002-09-11 00:51:29 +04:00
|
|
|
{
|
|
|
|
rm = (*pos).second;
|
|
|
|
}
|
|
|
|
return rm;
|
|
|
|
}
|
|
|
|
|
2014-02-25 05:19:17 +04:00
|
|
|
void cmake::RenameCommand(const std::string& oldName,
|
|
|
|
const std::string& newName)
|
2005-06-14 20:48:59 +04:00
|
|
|
{
|
|
|
|
// if the command already exists, free the old one
|
2005-06-16 22:56:15 +04:00
|
|
|
std::string sOldName = cmSystemTools::LowerCase(oldName);
|
|
|
|
std::string sNewName = cmSystemTools::LowerCase(newName);
|
2006-03-15 19:02:08 +03:00
|
|
|
RegisteredCommandsMap::iterator pos = this->Commands.find(sOldName);
|
|
|
|
if ( pos == this->Commands.end() )
|
2005-06-14 20:48:59 +04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2005-06-16 22:56:15 +04:00
|
|
|
cmCommand* cmd = pos->second;
|
2005-06-14 20:48:59 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
pos = this->Commands.find(sNewName);
|
|
|
|
if (pos != this->Commands.end())
|
2005-06-16 22:56:15 +04:00
|
|
|
{
|
|
|
|
delete pos->second;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Commands.erase(pos);
|
2005-06-16 22:56:15 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Commands.insert(RegisteredCommandsMap::value_type(sNewName, cmd));
|
|
|
|
pos = this->Commands.find(sOldName);
|
|
|
|
this->Commands.erase(pos);
|
2005-06-14 20:48:59 +04:00
|
|
|
}
|
|
|
|
|
2014-02-25 05:19:17 +04:00
|
|
|
void cmake::RemoveCommand(const std::string& name)
|
2007-06-12 18:56:40 +04:00
|
|
|
{
|
|
|
|
std::string sName = cmSystemTools::LowerCase(name);
|
|
|
|
RegisteredCommandsMap::iterator pos = this->Commands.find(sName);
|
|
|
|
if ( pos != this->Commands.end() )
|
|
|
|
{
|
|
|
|
delete pos->second;
|
|
|
|
this->Commands.erase(pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-11 00:51:29 +04:00
|
|
|
void cmake::AddCommand(cmCommand* wg)
|
|
|
|
{
|
2005-06-16 22:56:15 +04:00
|
|
|
std::string name = cmSystemTools::LowerCase(wg->GetName());
|
2002-09-24 21:24:10 +04:00
|
|
|
// if the command already exists, free the old one
|
2006-03-15 19:02:08 +03:00
|
|
|
RegisteredCommandsMap::iterator pos = this->Commands.find(name);
|
|
|
|
if (pos != this->Commands.end())
|
2002-09-24 21:24:10 +04:00
|
|
|
{
|
|
|
|
delete pos->second;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Commands.erase(pos);
|
2002-09-24 21:24:10 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Commands.insert( RegisteredCommandsMap::value_type(name, wg));
|
2002-09-11 00:51:29 +04:00
|
|
|
}
|
2002-08-23 21:46:32 +04:00
|
|
|
|
2007-07-27 16:59:59 +04:00
|
|
|
|
|
|
|
void cmake::RemoveUnscriptableCommands()
|
|
|
|
{
|
|
|
|
std::vector<std::string> unscriptableCommands;
|
|
|
|
cmake::RegisteredCommandsMap* commands = this->GetCommands();
|
|
|
|
for (cmake::RegisteredCommandsMap::const_iterator pos = commands->begin();
|
|
|
|
pos != commands->end();
|
|
|
|
++pos)
|
|
|
|
{
|
|
|
|
if (!pos->second->IsScriptable())
|
|
|
|
{
|
|
|
|
unscriptableCommands.push_back(pos->first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(std::vector<std::string>::const_iterator it=unscriptableCommands.begin();
|
|
|
|
it != unscriptableCommands.end();
|
|
|
|
++it)
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->RemoveCommand(*it);
|
2007-07-27 16:59:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-21 01:51:03 +03:00
|
|
|
// Parse the args
|
2003-10-29 17:45:26 +03:00
|
|
|
bool cmake::SetCacheArgs(const std::vector<std::string>& args)
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2011-07-02 19:50:05 +04:00
|
|
|
bool findPackageMode = false;
|
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);
|
2005-07-20 01:16:23 +04:00
|
|
|
if(entry.size() == 0)
|
|
|
|
{
|
2006-05-19 07:24:00 +04:00
|
|
|
++i;
|
|
|
|
if(i < args.size())
|
|
|
|
{
|
|
|
|
entry = args[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-06-04 21:50:34 +04:00
|
|
|
cmSystemTools::Error("-D must be followed with VAR=VALUE.");
|
2006-05-19 07:24:00 +04:00
|
|
|
return false;
|
|
|
|
}
|
2005-07-20 01:16:23 +04:00
|
|
|
}
|
2001-11-21 01:51:03 +03:00
|
|
|
std::string var, value;
|
2003-08-01 22:10:26 +04:00
|
|
|
cmCacheManager::CacheEntryType type = cmCacheManager::UNINITIALIZED;
|
2014-03-11 03:04:11 +04:00
|
|
|
if(cmCacheManager::ParseEntry(entry, var, value, type))
|
2001-11-21 01:51:03 +03:00
|
|
|
{
|
2013-05-16 23:51:45 +04:00
|
|
|
// The value is transformed if it is a filepath for example, so
|
|
|
|
// we can't compare whether the value is already in the cache until
|
|
|
|
// after we call AddCacheEntry.
|
|
|
|
const char *cachedValue =
|
2014-03-11 03:04:11 +04:00
|
|
|
this->CacheManager->GetCacheValue(var);
|
2013-05-16 23:51:45 +04:00
|
|
|
|
2014-03-11 03:04:11 +04:00
|
|
|
this->CacheManager->AddCacheEntry(var, value.c_str(),
|
2007-06-04 21:48:11 +04:00
|
|
|
"No help, variable specified on the command line.", type);
|
2010-09-01 18:22:08 +04:00
|
|
|
if(this->WarnUnusedCli)
|
|
|
|
{
|
2013-05-16 23:51:45 +04:00
|
|
|
if (!cachedValue
|
2014-03-11 03:04:11 +04:00
|
|
|
|| strcmp(this->CacheManager->GetCacheValue(var),
|
2013-05-16 23:51:45 +04:00
|
|
|
cachedValue) != 0)
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->WatchUnusedCli(var);
|
2013-05-16 23:51:45 +04:00
|
|
|
}
|
2010-09-01 18:22:08 +04:00
|
|
|
}
|
2001-11-21 01:51:03 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << "Parse error in command line argument: " << arg << "\n"
|
|
|
|
<< "Should be: VAR:type=value\n";
|
2009-08-01 00:11:28 +04:00
|
|
|
cmSystemTools::Error("No cmake script provided.");
|
2003-10-29 17:45:26 +03:00
|
|
|
return false;
|
2006-03-10 21:06:26 +03:00
|
|
|
}
|
2001-11-21 01:51:03 +03:00
|
|
|
}
|
2008-03-11 22:17:58 +03:00
|
|
|
else if(arg.find("-Wno-dev",0) == 0)
|
|
|
|
{
|
2008-03-12 05:50:35 +03:00
|
|
|
this->SuppressDevWarnings = true;
|
2008-03-22 17:24:06 +03:00
|
|
|
this->DoSuppressDevWarnings = true;
|
2008-03-11 22:17:58 +03:00
|
|
|
}
|
|
|
|
else if(arg.find("-Wdev",0) == 0)
|
2010-10-31 16:46:09 +03:00
|
|
|
{
|
2008-03-12 05:50:35 +03:00
|
|
|
this->SuppressDevWarnings = false;
|
2008-03-22 17:24:06 +03:00
|
|
|
this->DoSuppressDevWarnings = true;
|
2008-03-11 22:17:58 +03:00
|
|
|
}
|
2007-06-01 22:16:46 +04:00
|
|
|
else if(arg.find("-U",0) == 0)
|
|
|
|
{
|
|
|
|
std::string entryPattern = arg.substr(2);
|
|
|
|
if(entryPattern.size() == 0)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if(i < args.size())
|
|
|
|
{
|
|
|
|
entryPattern = args[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("-U must be followed with VAR.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2007-06-04 21:48:11 +04:00
|
|
|
cmsys::RegularExpression regex(
|
2014-03-11 03:04:11 +04:00
|
|
|
cmsys::Glob::PatternToRegex(entryPattern, true, true).c_str());
|
2007-06-01 22:16:46 +04:00
|
|
|
//go through all cache entries and collect the vars which will be removed
|
|
|
|
std::vector<std::string> entriesToDelete;
|
2010-10-31 16:46:09 +03:00
|
|
|
cmCacheManager::CacheIterator it =
|
2007-06-01 22:16:46 +04:00
|
|
|
this->CacheManager->GetCacheIterator();
|
|
|
|
for ( it.Begin(); !it.IsAtEnd(); it.Next() )
|
|
|
|
{
|
|
|
|
cmCacheManager::CacheEntryType t = it.GetType();
|
2007-06-07 18:41:52 +04:00
|
|
|
if(t != cmCacheManager::STATIC)
|
2007-06-01 22:16:46 +04:00
|
|
|
{
|
|
|
|
std::string entryName = it.GetName();
|
2007-06-04 21:48:11 +04:00
|
|
|
if (regex.find(entryName.c_str()))
|
2007-06-01 22:16:46 +04:00
|
|
|
{
|
|
|
|
entriesToDelete.push_back(entryName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// now remove them from the cache
|
2010-10-31 16:46:09 +03:00
|
|
|
for(std::vector<std::string>::const_iterator currentEntry =
|
|
|
|
entriesToDelete.begin();
|
2007-06-01 22:16:46 +04:00
|
|
|
currentEntry != entriesToDelete.end();
|
|
|
|
++currentEntry)
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->CacheManager->RemoveCacheEntry(*currentEntry);
|
2007-06-01 22:16:46 +04:00
|
|
|
}
|
|
|
|
}
|
2001-12-04 01:00:43 +03:00
|
|
|
else if(arg.find("-C",0) == 0)
|
|
|
|
{
|
|
|
|
std::string path = arg.substr(2);
|
2003-10-29 17:45:26 +03:00
|
|
|
if ( path.size() == 0 )
|
|
|
|
{
|
2006-05-19 07:24:00 +04:00
|
|
|
++i;
|
|
|
|
if(i < args.size())
|
|
|
|
{
|
|
|
|
path = args[i];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("-C must be followed by a file name.");
|
|
|
|
return false;
|
|
|
|
}
|
2003-10-29 17:45:26 +03:00
|
|
|
}
|
2014-03-11 16:35:32 +04:00
|
|
|
std::cerr << "loading initial cache file " << path << "\n";
|
2011-02-03 05:17:23 +03:00
|
|
|
this->ReadListFile(args, path.c_str());
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
2003-12-11 03:47:15 +03:00
|
|
|
else if(arg.find("-P",0) == 0)
|
2003-10-29 17:45:26 +03:00
|
|
|
{
|
2004-02-20 22:46:33 +03:00
|
|
|
i++;
|
2006-05-19 07:24:00 +04:00
|
|
|
if(i >= args.size())
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("-P must be followed by a file name.");
|
|
|
|
return false;
|
|
|
|
}
|
2004-02-20 22:46:33 +03:00
|
|
|
std::string path = args[i];
|
2003-10-29 17:45:26 +03:00
|
|
|
if ( path.size() == 0 )
|
|
|
|
{
|
2005-09-23 20:50:09 +04:00
|
|
|
cmSystemTools::Error("No cmake script provided.");
|
2003-10-29 17:45:26 +03:00
|
|
|
return false;
|
|
|
|
}
|
2011-02-03 05:17:23 +03:00
|
|
|
this->ReadListFile(args, path.c_str());
|
2003-10-29 17:45:26 +03:00
|
|
|
}
|
2011-07-02 19:50:05 +04:00
|
|
|
else if (arg.find("--find-package",0) == 0)
|
|
|
|
{
|
|
|
|
findPackageMode = true;
|
|
|
|
}
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
2011-07-02 19:50:05 +04:00
|
|
|
|
|
|
|
if (findPackageMode)
|
|
|
|
{
|
|
|
|
return this->FindPackage(args);
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
2011-07-02 19:50:05 +04:00
|
|
|
|
2003-10-29 17:45:26 +03:00
|
|
|
return true;
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
|
|
|
|
2011-02-04 18:38:22 +03:00
|
|
|
void cmake::ReadListFile(const std::vector<std::string>& args,
|
|
|
|
const char *path)
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
|
|
|
// 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;
|
2006-03-10 21:06:26 +03:00
|
|
|
|
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)
|
|
|
|
{
|
2012-11-21 03:56:36 +04:00
|
|
|
cmsys::auto_ptr<cmLocalGenerator> lg(gg->CreateLocalGenerator());
|
2005-09-23 20:50:09 +04:00
|
|
|
lg->GetMakefile()->SetHomeOutputDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2005-09-23 20:50:09 +04:00
|
|
|
lg->GetMakefile()->SetStartOutputDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2005-09-23 20:50:09 +04:00
|
|
|
lg->GetMakefile()->SetHomeDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2005-09-23 20:50:09 +04:00
|
|
|
lg->GetMakefile()->SetStartDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2011-07-13 20:59:51 +04:00
|
|
|
if (this->GetWorkingMode() != NORMAL_MODE)
|
2011-02-03 02:18:14 +03:00
|
|
|
{
|
|
|
|
std::string file(cmSystemTools::CollapseFullPath(path));
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(file);
|
|
|
|
lg->GetMakefile()->SetScriptModeFile(file.c_str());
|
2011-02-03 05:17:23 +03:00
|
|
|
|
|
|
|
lg->GetMakefile()->SetArgcArgv(args);
|
2011-02-03 02:18:14 +03:00
|
|
|
}
|
2003-07-28 21:40:53 +04:00
|
|
|
if (!lg->GetMakefile()->ReadListFile(0, path))
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
2013-06-21 15:51:58 +04:00
|
|
|
cmSystemTools::Error("Error processing file: ", path);
|
2001-12-04 01:00:43 +03:00
|
|
|
}
|
2001-11-21 01:51:03 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +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
|
|
|
}
|
|
|
|
|
2011-07-02 19:50:05 +04:00
|
|
|
|
|
|
|
bool cmake::FindPackage(const std::vector<std::string>& args)
|
|
|
|
{
|
2011-07-03 01:14:28 +04:00
|
|
|
// if a generator was not yet created, temporarily create one
|
|
|
|
cmGlobalGenerator *gg = new cmGlobalGenerator;
|
|
|
|
gg->SetCMakeInstance(this);
|
|
|
|
this->SetGlobalGenerator(gg);
|
|
|
|
|
|
|
|
// read in the list file to fill the cache
|
2012-11-21 03:56:36 +04:00
|
|
|
cmsys::auto_ptr<cmLocalGenerator> lg(gg->CreateLocalGenerator());
|
2011-07-03 01:14:28 +04:00
|
|
|
cmMakefile* mf = lg->GetMakefile();
|
|
|
|
mf->SetHomeOutputDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2011-07-03 01:14:28 +04:00
|
|
|
mf->SetStartOutputDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2011-07-03 01:14:28 +04:00
|
|
|
mf->SetHomeDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2011-07-03 01:14:28 +04:00
|
|
|
mf->SetStartDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2011-07-03 01:14:28 +04:00
|
|
|
|
|
|
|
mf->SetArgcArgv(args);
|
|
|
|
|
|
|
|
std::string systemFile = mf->GetModulesFile("CMakeFindPackageMode.cmake");
|
|
|
|
mf->ReadListFile(0, systemFile.c_str());
|
|
|
|
|
|
|
|
std::string language = mf->GetSafeDefinition("LANGUAGE");
|
|
|
|
std::string mode = mf->GetSafeDefinition("MODE");
|
|
|
|
std::string packageName = mf->GetSafeDefinition("NAME");
|
|
|
|
bool packageFound = mf->IsOn("PACKAGE_FOUND");
|
|
|
|
bool quiet = mf->IsOn("PACKAGE_QUIET");
|
|
|
|
|
|
|
|
if (!packageFound)
|
|
|
|
{
|
|
|
|
if (!quiet)
|
|
|
|
{
|
|
|
|
printf("%s not found.\n", packageName.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (mode == "EXIST")
|
|
|
|
{
|
|
|
|
if (!quiet)
|
|
|
|
{
|
|
|
|
printf("%s found.\n", packageName.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (mode == "COMPILE")
|
|
|
|
{
|
|
|
|
std::string includes = mf->GetSafeDefinition("PACKAGE_INCLUDE_DIRS");
|
|
|
|
std::vector<std::string> includeDirs;
|
|
|
|
cmSystemTools::ExpandListArgument(includes, includeDirs);
|
|
|
|
|
2013-07-02 00:28:26 +04:00
|
|
|
std::string includeFlags = lg->GetIncludeFlags(includeDirs, 0,
|
2014-03-11 03:04:11 +04:00
|
|
|
language, false);
|
2011-12-04 19:36:48 +04:00
|
|
|
|
2011-07-03 01:14:28 +04:00
|
|
|
std::string definitions = mf->GetSafeDefinition("PACKAGE_DEFINITIONS");
|
|
|
|
printf("%s %s\n", includeFlags.c_str(), definitions.c_str());
|
|
|
|
}
|
|
|
|
else if (mode == "LINK")
|
|
|
|
{
|
|
|
|
const char* targetName = "dummy";
|
|
|
|
std::vector<std::string> srcs;
|
|
|
|
cmTarget* tgt = mf->AddExecutable(targetName, srcs, true);
|
|
|
|
tgt->SetProperty("LINKER_LANGUAGE", language.c_str());
|
|
|
|
|
|
|
|
std::string libs = mf->GetSafeDefinition("PACKAGE_LIBRARIES");
|
|
|
|
std::vector<std::string> libList;
|
|
|
|
cmSystemTools::ExpandListArgument(libs, libList);
|
|
|
|
for(std::vector<std::string>::const_iterator libIt=libList.begin();
|
|
|
|
libIt != libList.end();
|
|
|
|
++libIt)
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
mf->AddLinkLibraryForTarget(targetName, *libIt,
|
2011-08-18 20:39:05 +04:00
|
|
|
cmTarget::GENERAL);
|
2011-07-03 01:14:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string linkLibs;
|
2012-09-26 16:38:15 +04:00
|
|
|
std::string frameworkPath;
|
|
|
|
std::string linkPath;
|
2011-07-03 01:14:28 +04:00
|
|
|
std::string flags;
|
|
|
|
std::string linkFlags;
|
2014-01-11 17:17:03 +04:00
|
|
|
gg->CreateGeneratorTargets(mf);
|
|
|
|
cmGeneratorTarget *gtgt = gg->GetGeneratorTarget(tgt);
|
2012-09-26 16:38:15 +04:00
|
|
|
lg->GetTargetFlags(linkLibs, frameworkPath, linkPath, flags, linkFlags,
|
2014-04-05 01:06:13 +04:00
|
|
|
gtgt, false);
|
2012-09-26 16:38:15 +04:00
|
|
|
linkLibs = frameworkPath + linkPath + linkLibs;
|
2011-07-03 01:14:28 +04:00
|
|
|
|
|
|
|
printf("%s\n", linkLibs.c_str() );
|
|
|
|
|
|
|
|
/* if ( use_win32 )
|
|
|
|
{
|
|
|
|
tgt->SetProperty("WIN32_EXECUTABLE", "ON");
|
|
|
|
}
|
|
|
|
if ( use_macbundle)
|
|
|
|
{
|
|
|
|
tgt->SetProperty("MACOSX_BUNDLE", "ON");
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
|
|
|
|
// free generic one if generated
|
|
|
|
// this->SetGlobalGenerator(0); // setting 0-pointer is not possible
|
|
|
|
// delete gg; // this crashes inside the cmake instance
|
|
|
|
|
|
|
|
return packageFound;
|
2011-07-02 19:50:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-05-18 23:25:08 +04:00
|
|
|
// Parse the args
|
2010-10-06 23:00:52 +04:00
|
|
|
void cmake::SetArgs(const std::vector<std::string>& args,
|
|
|
|
bool directoriesSetBefore)
|
2001-05-18 23:25:08 +04:00
|
|
|
{
|
2010-10-05 21:44:28 +04:00
|
|
|
bool directoriesSet = directoriesSetBefore;
|
2012-12-10 19:42:33 +04:00
|
|
|
bool haveToolset = false;
|
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);
|
2003-12-22 20:24:26 +03:00
|
|
|
path = cmSystemTools::CollapseFullPath(path.c_str());
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(path);
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetHomeDirectory(path);
|
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
|
|
|
{
|
2005-03-01 20:26:25 +03:00
|
|
|
// There is no local generate anymore. Ignore -S option.
|
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
|
|
|
{
|
2005-03-01 20:26:25 +03:00
|
|
|
// There is no local generate anymore. Ignore -O option.
|
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);
|
2003-12-22 20:24:26 +03:00
|
|
|
path = cmSystemTools::CollapseFullPath(path.c_str());
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(path);
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetHomeOutputDirectory(path);
|
2001-05-18 23:25:08 +04:00
|
|
|
}
|
2014-03-04 19:11:32 +04:00
|
|
|
else if((i < args.size()-2) && (arg.find("--check-build-system",0) == 0))
|
2004-10-15 17:24:44 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CheckBuildSystemArgument = args[++i];
|
|
|
|
this->ClearBuildSystem = (atoi(args[++i].c_str()) > 0);
|
2004-10-15 17:24:44 +04:00
|
|
|
}
|
2007-11-10 16:15:13 +03:00
|
|
|
else if((i < args.size()-1) && (arg.find("--check-stamp-file",0) == 0))
|
|
|
|
{
|
|
|
|
this->CheckStampFile = args[++i];
|
|
|
|
}
|
2008-03-12 00:25:49 +03:00
|
|
|
else if((i < args.size()-1) && (arg.find("--check-stamp-list",0) == 0))
|
|
|
|
{
|
|
|
|
this->CheckStampList = args[++i];
|
|
|
|
}
|
2007-11-19 22:22:38 +03:00
|
|
|
#if defined(CMAKE_HAVE_VS_GENERATORS)
|
2007-11-19 21:45:16 +03:00
|
|
|
else if((i < args.size()-1) && (arg.find("--vs-solution-file",0) == 0))
|
|
|
|
{
|
|
|
|
this->VSSolutionFile = args[++i];
|
|
|
|
}
|
2007-11-19 22:22:38 +03:00
|
|
|
#endif
|
2001-09-07 01:28:24 +04:00
|
|
|
else if(arg.find("-V",0) == 0)
|
2001-05-18 23:25:08 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Verbose = true;
|
2001-05-18 23:25:08 +04:00
|
|
|
}
|
2001-11-21 16:47:37 +03:00
|
|
|
else if(arg.find("-D",0) == 0)
|
|
|
|
{
|
|
|
|
// skip for now
|
|
|
|
}
|
2007-06-01 22:16:46 +04:00
|
|
|
else if(arg.find("-U",0) == 0)
|
|
|
|
{
|
|
|
|
// skip for now
|
|
|
|
}
|
2001-12-04 01:00:43 +03:00
|
|
|
else if(arg.find("-C",0) == 0)
|
|
|
|
{
|
|
|
|
// skip for now
|
|
|
|
}
|
2005-01-28 21:00:36 +03:00
|
|
|
else if(arg.find("-P",0) == 0)
|
2003-10-29 17:45:26 +03:00
|
|
|
{
|
|
|
|
// skip for now
|
2005-01-28 21:00:36 +03:00
|
|
|
i++;
|
2003-10-29 17:45:26 +03:00
|
|
|
}
|
2011-07-02 19:50:05 +04:00
|
|
|
else if(arg.find("--find-package",0) == 0)
|
|
|
|
{
|
|
|
|
// skip for now
|
|
|
|
i++;
|
|
|
|
}
|
2008-03-13 22:06:35 +03:00
|
|
|
else if(arg.find("-Wno-dev",0) == 0)
|
|
|
|
{
|
|
|
|
// skip for now
|
|
|
|
}
|
|
|
|
else if(arg.find("-Wdev",0) == 0)
|
|
|
|
{
|
|
|
|
// skip for now
|
|
|
|
}
|
2006-03-03 22:24:31 +03:00
|
|
|
else if(arg.find("--graphviz=",0) == 0)
|
|
|
|
{
|
|
|
|
std::string path = arg.substr(strlen("--graphviz="));
|
|
|
|
path = cmSystemTools::CollapseFullPath(path.c_str());
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(path);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GraphVizFile = path;
|
|
|
|
if ( this->GraphVizFile.empty() )
|
2006-03-03 22:24:31 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("No file specified for --graphviz");
|
|
|
|
}
|
|
|
|
}
|
2003-12-23 23:01:10 +03:00
|
|
|
else if(arg.find("--debug-trycompile",0) == 0)
|
|
|
|
{
|
|
|
|
std::cout << "debug trycompile on\n";
|
|
|
|
this->DebugTryCompileOn();
|
|
|
|
}
|
2006-10-06 19:11:59 +04:00
|
|
|
else if(arg.find("--debug-output",0) == 0)
|
|
|
|
{
|
|
|
|
std::cout << "Running with debug output on.\n";
|
2008-04-03 01:29:25 +04:00
|
|
|
this->SetDebugOutputOn(true);
|
2006-10-06 19:11:59 +04:00
|
|
|
}
|
2008-07-31 18:33:25 +04:00
|
|
|
else if(arg.find("--trace",0) == 0)
|
|
|
|
{
|
|
|
|
std::cout << "Running with trace output on.\n";
|
|
|
|
this->SetTrace(true);
|
|
|
|
}
|
2010-08-25 20:35:40 +04:00
|
|
|
else if(arg.find("--warn-uninitialized",0) == 0)
|
2010-07-12 23:48:51 +04:00
|
|
|
{
|
2010-08-25 20:35:40 +04:00
|
|
|
std::cout << "Warn about uninitialized values.\n";
|
|
|
|
this->SetWarnUninitialized(true);
|
2010-07-12 23:48:51 +04:00
|
|
|
}
|
2010-09-01 18:22:08 +04:00
|
|
|
else if(arg.find("--warn-unused-vars",0) == 0)
|
2010-08-25 00:49:49 +04:00
|
|
|
{
|
2010-09-01 18:22:08 +04:00
|
|
|
std::cout << "Finding unused variables.\n";
|
2010-08-25 20:36:21 +04:00
|
|
|
this->SetWarnUnused(true);
|
2010-08-25 00:49:49 +04:00
|
|
|
}
|
2010-09-02 19:38:00 +04:00
|
|
|
else if(arg.find("--no-warn-unused-cli",0) == 0)
|
2010-08-25 00:49:49 +04:00
|
|
|
{
|
2010-09-16 19:49:58 +04:00
|
|
|
std::cout << "Not searching for unused variables given on the " <<
|
|
|
|
"command line.\n";
|
2010-09-02 19:38:00 +04:00
|
|
|
this->SetWarnUnusedCli(false);
|
2010-08-25 00:49:49 +04:00
|
|
|
}
|
2010-09-01 19:24:20 +04:00
|
|
|
else if(arg.find("--check-system-vars",0) == 0)
|
|
|
|
{
|
2010-09-16 19:49:58 +04:00
|
|
|
std::cout << "Also check system files when warning about unused and " <<
|
|
|
|
"uninitialized variables.\n";
|
2010-09-01 19:24:20 +04:00
|
|
|
this->SetCheckSystemVars(true);
|
|
|
|
}
|
2012-12-10 19:42:33 +04:00
|
|
|
else if(arg.find("-T",0) == 0)
|
|
|
|
{
|
|
|
|
std::string value = arg.substr(2);
|
|
|
|
if(value.size() == 0)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if(i >= args.size())
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("No toolset specified for -T");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
value = args[i];
|
|
|
|
}
|
|
|
|
if(haveToolset)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Multiple -T options not allowed");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this->GeneratorToolset = value;
|
|
|
|
haveToolset = true;
|
|
|
|
}
|
2001-09-07 01:28:24 +04:00
|
|
|
else if(arg.find("-G",0) == 0)
|
|
|
|
{
|
|
|
|
std::string value = arg.substr(2);
|
2005-07-20 01:16:23 +04:00
|
|
|
if(value.size() == 0)
|
|
|
|
{
|
2006-05-19 07:24:00 +04:00
|
|
|
++i;
|
|
|
|
if(i >= args.size())
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("No generator specified for -G");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
value = args[i];
|
2005-07-20 01:16:23 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
cmGlobalGenerator* gen =
|
2014-03-11 03:04:11 +04:00
|
|
|
this->CreateGlobalGenerator(value);
|
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;
|
2003-08-06 00:36:15 +04:00
|
|
|
this->SetDirectoriesFromFile(arg.c_str());
|
2001-09-07 01:28:24 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!directoriesSet)
|
|
|
|
{
|
2002-09-06 21:06:23 +04:00
|
|
|
this->SetHomeOutputDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2002-09-06 21:06:23 +04:00
|
|
|
this->SetStartOutputDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2002-09-06 21:06:23 +04:00
|
|
|
this->SetHomeDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2002-09-06 21:06:23 +04:00
|
|
|
this->SetStartDirectory
|
2014-03-11 03:04:11 +04:00
|
|
|
(cmSystemTools::GetCurrentWorkingDirectory());
|
2001-05-18 23:25:08 +04:00
|
|
|
}
|
2005-03-10 21:39:38 +03:00
|
|
|
|
|
|
|
this->SetStartDirectory(this->GetHomeDirectory());
|
|
|
|
this->SetStartOutputDirectory(this->GetHomeOutputDirectory());
|
2001-05-18 23:25:08 +04:00
|
|
|
}
|
|
|
|
|
2003-08-06 00:36:15 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmake::SetDirectoriesFromFile(const char* arg)
|
|
|
|
{
|
|
|
|
// Check if the argument refers to a CMakeCache.txt or
|
|
|
|
// CMakeLists.txt file.
|
|
|
|
std::string listPath;
|
|
|
|
std::string cachePath;
|
|
|
|
bool argIsFile = false;
|
|
|
|
if(cmSystemTools::FileIsDirectory(arg))
|
|
|
|
{
|
|
|
|
std::string path = cmSystemTools::CollapseFullPath(arg);
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(path);
|
|
|
|
std::string cacheFile = path;
|
|
|
|
cacheFile += "/CMakeCache.txt";
|
|
|
|
std::string listFile = path;
|
|
|
|
listFile += "/CMakeLists.txt";
|
|
|
|
if(cmSystemTools::FileExists(cacheFile.c_str()))
|
|
|
|
{
|
|
|
|
cachePath = path;
|
|
|
|
}
|
|
|
|
if(cmSystemTools::FileExists(listFile.c_str()))
|
|
|
|
{
|
|
|
|
listPath = path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(cmSystemTools::FileExists(arg))
|
|
|
|
{
|
|
|
|
argIsFile = true;
|
|
|
|
std::string fullPath = cmSystemTools::CollapseFullPath(arg);
|
2014-03-11 03:04:11 +04:00
|
|
|
std::string name = cmSystemTools::GetFilenameName(fullPath);
|
2003-08-06 00:36:15 +04:00
|
|
|
name = cmSystemTools::LowerCase(name);
|
|
|
|
if(name == "cmakecache.txt")
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
cachePath = cmSystemTools::GetFilenamePath(fullPath);
|
2003-08-06 00:36:15 +04:00
|
|
|
}
|
|
|
|
else if(name == "cmakelists.txt")
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
listPath = cmSystemTools::GetFilenamePath(fullPath);
|
2003-08-06 00:36:15 +04:00
|
|
|
}
|
|
|
|
}
|
2003-12-08 19:31:16 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Specified file or directory does not exist. Try to set things
|
|
|
|
// up to produce a meaningful error message.
|
|
|
|
std::string fullPath = cmSystemTools::CollapseFullPath(arg);
|
2014-03-11 03:04:11 +04:00
|
|
|
std::string name = cmSystemTools::GetFilenameName(fullPath);
|
2003-12-08 19:31:16 +03:00
|
|
|
name = cmSystemTools::LowerCase(name);
|
|
|
|
if(name == "cmakecache.txt" || name == "cmakelists.txt")
|
|
|
|
{
|
|
|
|
argIsFile = true;
|
2014-03-11 03:04:11 +04:00
|
|
|
listPath = cmSystemTools::GetFilenamePath(fullPath);
|
2003-12-08 19:31:16 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
listPath = fullPath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-06 00:36:15 +04:00
|
|
|
// If there is a CMakeCache.txt file, use its settings.
|
|
|
|
if(cachePath.length() > 0)
|
|
|
|
{
|
|
|
|
cmCacheManager* cachem = this->GetCacheManager();
|
|
|
|
cmCacheManager::CacheIterator it = cachem->NewIterator();
|
2014-03-11 03:04:11 +04:00
|
|
|
if(cachem->LoadCache(cachePath) &&
|
2006-03-10 21:06:26 +03:00
|
|
|
it.Find("CMAKE_HOME_DIRECTORY"))
|
2003-08-06 00:36:15 +04:00
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetHomeOutputDirectory(cachePath);
|
|
|
|
this->SetStartOutputDirectory(cachePath);
|
2003-08-06 00:36:15 +04:00
|
|
|
this->SetHomeDirectory(it.GetValue());
|
|
|
|
this->SetStartDirectory(it.GetValue());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2003-08-06 00:36:15 +04:00
|
|
|
// If there is a CMakeLists.txt file, use it as the source tree.
|
|
|
|
if(listPath.length() > 0)
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetHomeDirectory(listPath);
|
|
|
|
this->SetStartDirectory(listPath);
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2003-08-06 00:36:15 +04:00
|
|
|
if(argIsFile)
|
|
|
|
{
|
|
|
|
// Source CMakeLists.txt file given. It was probably dropped
|
|
|
|
// onto the executable in a GUI. Default to an in-source build.
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetHomeOutputDirectory(listPath);
|
|
|
|
this->SetStartOutputDirectory(listPath);
|
2003-08-06 00:36:15 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Source directory given on command line. Use current working
|
|
|
|
// directory as build tree.
|
|
|
|
std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetHomeOutputDirectory(cwd);
|
|
|
|
this->SetStartOutputDirectory(cwd);
|
2003-08-06 00:36:15 +04:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2003-08-06 00:36:15 +04:00
|
|
|
// We didn't find a CMakeLists.txt or CMakeCache.txt file from the
|
|
|
|
// argument. Assume it is the path to the source tree, and use the
|
|
|
|
// current working directory as the build tree.
|
|
|
|
std::string full = cmSystemTools::CollapseFullPath(arg);
|
|
|
|
std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetHomeDirectory(full);
|
|
|
|
this->SetStartDirectory(full);
|
|
|
|
this->SetHomeOutputDirectory(cwd);
|
|
|
|
this->SetStartOutputDirectory(cwd);
|
2003-08-06 00:36:15 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
// at the end of this CMAKE_ROOT and CMAKE_COMMAND should be added to the
|
|
|
|
// cache
|
2007-12-14 01:56:50 +03:00
|
|
|
int cmake::AddCMakePaths()
|
2001-05-18 23:25:08 +04:00
|
|
|
{
|
2001-06-22 01:20:03 +04:00
|
|
|
// Save the value in the cache
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CacheManager->AddCacheEntry
|
2013-11-08 00:30:59 +04:00
|
|
|
("CMAKE_COMMAND", cmSystemTools::GetCMakeCommand().c_str(),
|
|
|
|
"Path to CMake executable.", cmCacheManager::INTERNAL);
|
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
|
|
|
this->CacheManager->AddCacheEntry
|
|
|
|
("CMAKE_CTEST_COMMAND", cmSystemTools::GetCTestCommand().c_str(),
|
|
|
|
"Path to ctest program executable.", cmCacheManager::INTERNAL);
|
|
|
|
this->CacheManager->AddCacheEntry
|
|
|
|
("CMAKE_CPACK_COMMAND", cmSystemTools::GetCPackCommand().c_str(),
|
|
|
|
"Path to cpack program executable.", cmCacheManager::INTERNAL);
|
|
|
|
#endif
|
|
|
|
if(!cmSystemTools::FileExists(
|
|
|
|
(cmSystemTools::GetCMakeRoot()+"/Modules/CMake.cmake").c_str()))
|
2001-06-22 01:20:03 +04:00
|
|
|
{
|
|
|
|
// couldn't find modules
|
2003-08-26 23:06:52 +04:00
|
|
|
cmSystemTools::Error("Could not find CMAKE_ROOT !!!\n"
|
2006-03-10 21:06:26 +03:00
|
|
|
"CMake has most likely not been installed correctly.\n"
|
|
|
|
"Modules directory not found in\n",
|
2013-11-08 00:30:59 +04:00
|
|
|
cmSystemTools::GetCMakeRoot().c_str());
|
2002-06-27 17:35:21 +04:00
|
|
|
return 0;
|
2001-05-18 23:25:08 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CacheManager->AddCacheEntry
|
2013-11-08 00:30:59 +04:00
|
|
|
("CMAKE_ROOT", cmSystemTools::GetCMakeRoot().c_str(),
|
2001-05-18 23:25:08 +04:00
|
|
|
"Path to CMake installation.", cmCacheManager::INTERNAL);
|
2002-09-28 01:28:15 +04:00
|
|
|
|
2002-06-03 21:08:52 +04:00
|
|
|
return 1;
|
|
|
|
}
|
2002-08-28 22:51:10 +04:00
|
|
|
|
2014-02-25 02:36:27 +04:00
|
|
|
void cmake::AddExtraGenerator(const std::string& name,
|
2007-06-08 19:57:16 +04:00
|
|
|
CreateExtraGeneratorFunctionType newFunction)
|
|
|
|
{
|
|
|
|
cmExternalMakefileProjectGenerator* extraGenerator = newFunction();
|
|
|
|
const std::vector<std::string>& supportedGlobalGenerators =
|
|
|
|
extraGenerator->GetSupportedGlobalGenerators();
|
|
|
|
|
2010-10-31 16:46:09 +03:00
|
|
|
for(std::vector<std::string>::const_iterator
|
2007-06-08 19:57:16 +04:00
|
|
|
it = supportedGlobalGenerators.begin();
|
|
|
|
it != supportedGlobalGenerators.end();
|
|
|
|
++it )
|
|
|
|
{
|
|
|
|
std::string fullName = cmExternalMakefileProjectGenerator::
|
2014-03-11 03:04:11 +04:00
|
|
|
CreateFullGeneratorName(*it, name);
|
|
|
|
this->ExtraGenerators[fullName] = newFunction;
|
2007-06-08 19:57:16 +04:00
|
|
|
}
|
|
|
|
delete extraGenerator;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmake::AddDefaultExtraGenerators()
|
|
|
|
{
|
2007-07-18 18:19:33 +04:00
|
|
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
2007-06-08 19:57:16 +04:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
2007-07-18 18:19:33 +04:00
|
|
|
// e.g. kdevelop4 ?
|
2007-06-08 19:57:16 +04:00
|
|
|
#endif
|
2007-07-18 18:19:33 +04:00
|
|
|
|
|
|
|
this->AddExtraGenerator(cmExtraCodeBlocksGenerator::GetActualName(),
|
2007-07-13 08:58:43 +04:00
|
|
|
&cmExtraCodeBlocksGenerator::New);
|
2014-01-10 11:20:11 +04:00
|
|
|
this->AddExtraGenerator(cmExtraCodeLiteGenerator::GetActualName(),
|
|
|
|
&cmExtraCodeLiteGenerator::New);
|
2012-10-11 02:01:48 +04:00
|
|
|
this->AddExtraGenerator(cmExtraSublimeTextGenerator::GetActualName(),
|
|
|
|
&cmExtraSublimeTextGenerator::New);
|
2013-11-16 18:41:32 +04:00
|
|
|
this->AddExtraGenerator(cmExtraKateGenerator::GetActualName(),
|
|
|
|
&cmExtraKateGenerator::New);
|
2007-07-18 18:19:33 +04:00
|
|
|
|
2007-08-01 17:18:50 +04:00
|
|
|
#ifdef CMAKE_USE_ECLIPSE
|
|
|
|
this->AddExtraGenerator(cmExtraEclipseCDT4Generator::GetActualName(),
|
|
|
|
&cmExtraEclipseCDT4Generator::New);
|
|
|
|
#endif
|
|
|
|
|
2007-07-18 18:19:33 +04:00
|
|
|
#ifdef CMAKE_USE_KDEVELOP
|
2010-10-31 16:46:09 +03:00
|
|
|
this->AddExtraGenerator(cmGlobalKdevelopGenerator::GetActualName(),
|
2007-07-04 00:10:50 +04:00
|
|
|
&cmGlobalKdevelopGenerator::New);
|
2010-10-31 16:46:09 +03:00
|
|
|
// for kdevelop also add the generator with just the name of the
|
2007-07-04 00:10:50 +04:00
|
|
|
// extra generator, since it was this way since cmake 2.2
|
2010-10-31 16:46:09 +03:00
|
|
|
this->ExtraGenerators[cmGlobalKdevelopGenerator::GetActualName()]
|
2007-07-04 00:10:50 +04:00
|
|
|
= &cmGlobalKdevelopGenerator::New;
|
2007-06-08 19:57:16 +04:00
|
|
|
#endif
|
2007-07-18 18:19:33 +04:00
|
|
|
|
|
|
|
#endif
|
2007-06-08 19:57:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-30 23:59:54 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2002-08-28 22:51:10 +04:00
|
|
|
void cmake::GetRegisteredGenerators(std::vector<std::string>& names)
|
|
|
|
{
|
2012-11-19 19:13:54 +04:00
|
|
|
for(RegisteredGeneratorsVector::const_iterator i = this->Generators.begin();
|
2006-03-15 19:02:08 +03:00
|
|
|
i != this->Generators.end(); ++i)
|
2003-07-08 05:52:10 +04:00
|
|
|
{
|
2012-11-19 19:13:54 +04:00
|
|
|
(*i)->GetGenerators(names);
|
2003-07-08 05:52:10 +04:00
|
|
|
}
|
2010-10-31 16:46:09 +03:00
|
|
|
for(RegisteredExtraGeneratorsMap::const_iterator
|
2007-08-01 22:58:55 +04:00
|
|
|
i = this->ExtraGenerators.begin();
|
|
|
|
i != this->ExtraGenerators.end(); ++i)
|
|
|
|
{
|
|
|
|
names.push_back(i->first);
|
|
|
|
}
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
|
|
|
|
2014-02-25 02:36:27 +04:00
|
|
|
cmGlobalGenerator* cmake::CreateGlobalGenerator(const std::string& gname)
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
2007-06-08 19:57:16 +04:00
|
|
|
cmExternalMakefileProjectGenerator* extraGenerator = 0;
|
2014-02-25 02:36:27 +04:00
|
|
|
std::string name = gname;
|
2012-11-19 18:56:31 +04:00
|
|
|
RegisteredExtraGeneratorsMap::const_iterator extraGenIt =
|
|
|
|
this->ExtraGenerators.find(name);
|
|
|
|
if (extraGenIt != this->ExtraGenerators.end())
|
2002-08-28 22:51:10 +04:00
|
|
|
{
|
2007-06-08 19:57:16 +04:00
|
|
|
extraGenerator = (extraGenIt->second)();
|
2012-11-19 18:56:31 +04:00
|
|
|
name = extraGenerator->GetGlobalGeneratorName(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
cmGlobalGenerator* generator = 0;
|
2012-11-19 19:13:54 +04:00
|
|
|
for (RegisteredGeneratorsVector::const_iterator i =
|
|
|
|
this->Generators.begin(); i != this->Generators.end(); ++i)
|
2012-11-19 18:56:31 +04:00
|
|
|
{
|
2012-11-19 19:13:54 +04:00
|
|
|
generator = (*i)->CreateGlobalGenerator(name);
|
|
|
|
if (generator)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2012-11-19 18:56:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (generator)
|
|
|
|
{
|
|
|
|
generator->SetCMakeInstance(this);
|
|
|
|
generator->SetExternalMakefileProjectGenerator(extraGenerator);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delete extraGenerator;
|
|
|
|
}
|
2007-06-08 19:57:16 +04:00
|
|
|
|
|
|
|
return generator;
|
2002-08-28 22:51:10 +04:00
|
|
|
}
|
|
|
|
|
2014-02-08 00:24:15 +04:00
|
|
|
void cmake::SetHomeDirectory(const std::string& dir)
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->cmHomeDirectory = dir;
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(this->cmHomeDirectory);
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
2002-08-28 22:51:10 +04:00
|
|
|
|
2014-02-08 00:24:15 +04:00
|
|
|
void cmake::SetHomeOutputDirectory(const std::string& lib)
|
2002-08-28 22:51:10 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->HomeOutputDirectory = lib;
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(this->HomeOutputDirectory);
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmake::SetGlobalGenerator(cmGlobalGenerator *gg)
|
|
|
|
{
|
2006-10-03 19:55:55 +04:00
|
|
|
if(!gg)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Error SetGlobalGenerator called with null");
|
|
|
|
return;
|
|
|
|
}
|
2002-09-06 21:06:23 +04:00
|
|
|
// delete the old generator
|
2006-03-15 19:02:08 +03:00
|
|
|
if (this->GlobalGenerator)
|
2002-08-28 22:51:10 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
delete this->GlobalGenerator;
|
2003-01-09 20:18:22 +03:00
|
|
|
// restore the original environment variables CXX and CC
|
2012-02-26 22:44:20 +04:00
|
|
|
// Restore CC
|
2003-01-09 20:18:22 +03:00
|
|
|
std::string env = "CC=";
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->CCEnvironment.size())
|
2003-01-09 20:18:22 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
env += this->CCEnvironment;
|
2003-01-09 20:18:22 +03:00
|
|
|
}
|
2004-01-26 21:32:46 +03:00
|
|
|
cmSystemTools::PutEnv(env.c_str());
|
2003-01-09 20:18:22 +03:00
|
|
|
env = "CXX=";
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->CXXEnvironment.size())
|
2003-01-09 20:18:22 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
env += this->CXXEnvironment;
|
2003-01-09 20:18:22 +03:00
|
|
|
}
|
2004-01-26 21:32:46 +03:00
|
|
|
cmSystemTools::PutEnv(env.c_str());
|
2002-08-28 22:51:10 +04:00
|
|
|
}
|
2003-01-09 20:18:22 +03:00
|
|
|
|
2002-09-06 21:06:23 +04:00
|
|
|
// set the new
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GlobalGenerator = gg;
|
2006-05-12 22:36:39 +04:00
|
|
|
|
|
|
|
// set the global flag for unix style paths on cmSystemTools as soon as
|
|
|
|
// the generator is set. This allows gmake to be used on windows.
|
|
|
|
cmSystemTools::SetForceUnixPaths
|
|
|
|
(this->GlobalGenerator->GetForceUnixPaths());
|
|
|
|
|
2003-01-09 20:18:22 +03:00
|
|
|
// Save the environment variables CXX and CC
|
2004-01-26 21:32:46 +03:00
|
|
|
const char* cxx = getenv("CXX");
|
|
|
|
const char* cc = getenv("CC");
|
|
|
|
if(cxx)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CXXEnvironment = cxx;
|
2004-01-26 21:32:46 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CXXEnvironment = "";
|
2004-01-26 21:32:46 +03:00
|
|
|
}
|
|
|
|
if(cc)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CCEnvironment = cc;
|
2004-01-26 21:32:46 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CCEnvironment = "";
|
2004-01-26 21:32:46 +03:00
|
|
|
}
|
2002-09-06 21:06:23 +04:00
|
|
|
// set the cmake instance just to be sure
|
|
|
|
gg->SetCMakeInstance(this);
|
2002-08-28 22:51:10 +04:00
|
|
|
}
|
|
|
|
|
2003-05-29 19:14:05 +04:00
|
|
|
int cmake::DoPreConfigureChecks()
|
2002-08-28 22:51:10 +04:00
|
|
|
{
|
2003-06-13 22:15:17 +04:00
|
|
|
// Make sure the Start directory contains a CMakeLists.txt file.
|
|
|
|
std::string srcList = this->GetHomeDirectory();
|
|
|
|
srcList += "/CMakeLists.txt";
|
|
|
|
if(!cmSystemTools::FileExists(srcList.c_str()))
|
|
|
|
{
|
2003-10-31 00:12:09 +03:00
|
|
|
cmOStringStream err;
|
2003-12-08 19:31:16 +03:00
|
|
|
if(cmSystemTools::FileIsDirectory(this->GetHomeDirectory()))
|
|
|
|
{
|
|
|
|
err << "The source directory \"" << this->GetHomeDirectory()
|
|
|
|
<< "\" does not appear to contain CMakeLists.txt.\n";
|
|
|
|
}
|
|
|
|
else if(cmSystemTools::FileExists(this->GetHomeDirectory()))
|
|
|
|
{
|
|
|
|
err << "The source directory \"" << this->GetHomeDirectory()
|
|
|
|
<< "\" is a file, not a directory.\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
err << "The source directory \"" << this->GetHomeDirectory()
|
|
|
|
<< "\" does not exist.\n";
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
err << "Specify --help for usage, or press the help button on the CMake "
|
|
|
|
"GUI.";
|
2003-10-31 00:12:09 +03:00
|
|
|
cmSystemTools::Error(err.str().c_str());
|
2003-06-13 22:15:17 +04:00
|
|
|
return -2;
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-09-13 18:41:20 +04:00
|
|
|
// do a sanity check on some values
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->CacheManager->GetCacheValue("CMAKE_HOME_DIRECTORY"))
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
2010-10-31 16:46:09 +03:00
|
|
|
std::string cacheStart =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CacheManager->GetCacheValue("CMAKE_HOME_DIRECTORY");
|
2002-09-06 21:06:23 +04:00
|
|
|
cacheStart += "/CMakeLists.txt";
|
|
|
|
std::string currentStart = this->GetHomeDirectory();
|
|
|
|
currentStart += "/CMakeLists.txt";
|
|
|
|
if(!cmSystemTools::SameFile(cacheStart.c_str(), currentStart.c_str()))
|
|
|
|
{
|
2003-08-06 00:51:00 +04:00
|
|
|
std::string message = "The source \"";
|
2002-09-06 21:06:23 +04:00
|
|
|
message += currentStart;
|
2003-08-06 00:51:00 +04:00
|
|
|
message += "\" does not match the source \"";
|
2002-09-06 21:06:23 +04:00
|
|
|
message += cacheStart;
|
2003-08-06 00:51:00 +04:00
|
|
|
message += "\" used to generate cache. ";
|
|
|
|
message += "Re-run cmake with a different source directory.";
|
2002-09-06 21:06:23 +04:00
|
|
|
cmSystemTools::Error(message.c_str());
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2003-05-29 19:14:05 +04:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2007-12-13 23:54:29 +03:00
|
|
|
struct SaveCacheEntry
|
|
|
|
{
|
|
|
|
std::string key;
|
|
|
|
std::string value;
|
|
|
|
std::string help;
|
|
|
|
cmCacheManager::CacheEntryType type;
|
|
|
|
};
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
int cmake::HandleDeleteCacheVariables(const std::string& var)
|
2007-12-13 23:54:29 +03:00
|
|
|
{
|
|
|
|
std::vector<std::string> argsSplit;
|
2013-02-09 01:33:52 +04:00
|
|
|
cmSystemTools::ExpandListArgument(std::string(var), argsSplit, true);
|
2007-12-13 23:54:29 +03:00
|
|
|
// erase the property to avoid infinite recursion
|
|
|
|
this->SetProperty("__CMAKE_DELETE_CACHE_CHANGE_VARS_", "");
|
2008-08-19 21:31:21 +04:00
|
|
|
if(this->GetIsInTryCompile())
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2007-12-13 23:54:29 +03:00
|
|
|
cmCacheManager::CacheIterator ci = this->CacheManager->NewIterator();
|
|
|
|
std::vector<SaveCacheEntry> saved;
|
|
|
|
cmOStringStream warning;
|
2010-10-31 16:46:09 +03:00
|
|
|
warning
|
2007-12-13 23:54:29 +03:00
|
|
|
<< "You have changed variables that require your cache to be deleted.\n"
|
|
|
|
<< "Configure will be re-run and you may have to reset some variables.\n"
|
|
|
|
<< "The following variables have changed:\n";
|
|
|
|
for(std::vector<std::string>::iterator i = argsSplit.begin();
|
|
|
|
i != argsSplit.end(); ++i)
|
2010-10-31 16:46:09 +03:00
|
|
|
{
|
2007-12-13 23:54:29 +03:00
|
|
|
SaveCacheEntry save;
|
|
|
|
save.key = *i;
|
|
|
|
warning << *i << "= ";
|
|
|
|
i++;
|
|
|
|
save.value = *i;
|
|
|
|
warning << *i << "\n";
|
2014-03-11 03:04:11 +04:00
|
|
|
if(ci.Find(save.key))
|
2007-12-13 23:54:29 +03:00
|
|
|
{
|
|
|
|
save.type = ci.GetType();
|
2014-05-28 00:03:51 +04:00
|
|
|
if(const char* help = ci.GetProperty("HELPSTRING"))
|
|
|
|
{
|
|
|
|
save.help = help;
|
|
|
|
}
|
2007-12-13 23:54:29 +03:00
|
|
|
}
|
|
|
|
saved.push_back(save);
|
|
|
|
}
|
2010-10-31 16:46:09 +03:00
|
|
|
|
2007-12-13 23:54:29 +03:00
|
|
|
// remove the cache
|
|
|
|
this->CacheManager->DeleteCache(this->GetStartOutputDirectory());
|
|
|
|
// load the empty cache
|
|
|
|
this->LoadCache();
|
|
|
|
// restore the changed compilers
|
|
|
|
for(std::vector<SaveCacheEntry>::iterator i = saved.begin();
|
|
|
|
i != saved.end(); ++i)
|
|
|
|
{
|
2014-03-11 03:04:11 +04:00
|
|
|
this->AddCacheEntry(i->key, i->value.c_str(),
|
2007-12-13 23:54:29 +03:00
|
|
|
i->help.c_str(), i->type);
|
|
|
|
}
|
|
|
|
cmSystemTools::Message(warning.str().c_str());
|
|
|
|
// avoid reconfigure if there were errors
|
|
|
|
if(!cmSystemTools::GetErrorOccuredFlag())
|
|
|
|
{
|
|
|
|
// re-run configure
|
|
|
|
return this->Configure();
|
|
|
|
}
|
2007-12-14 02:30:53 +03:00
|
|
|
return 0;
|
2007-12-13 23:54:29 +03:00
|
|
|
}
|
2003-05-29 19:14:05 +04:00
|
|
|
|
|
|
|
int cmake::Configure()
|
2007-12-13 23:54:29 +03:00
|
|
|
{
|
2008-03-22 17:24:06 +03:00
|
|
|
if(this->DoSuppressDevWarnings)
|
2008-03-12 05:50:35 +03:00
|
|
|
{
|
2008-03-22 17:24:06 +03:00
|
|
|
if(this->SuppressDevWarnings)
|
|
|
|
{
|
|
|
|
this->CacheManager->
|
|
|
|
AddCacheEntry("CMAKE_SUPPRESS_DEVELOPER_WARNINGS", "TRUE",
|
|
|
|
"Suppress Warnings that are meant for"
|
|
|
|
" the author of the CMakeLists.txt files.",
|
|
|
|
cmCacheManager::INTERNAL);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->CacheManager->
|
|
|
|
AddCacheEntry("CMAKE_SUPPRESS_DEVELOPER_WARNINGS", "FALSE",
|
|
|
|
"Suppress Warnings that are meant for"
|
|
|
|
" the author of the CMakeLists.txt files.",
|
|
|
|
cmCacheManager::INTERNAL);
|
|
|
|
}
|
2008-03-12 05:50:35 +03:00
|
|
|
}
|
2007-12-13 23:54:29 +03:00
|
|
|
int ret = this->ActualConfigure();
|
2007-12-15 22:13:14 +03:00
|
|
|
const char* delCacheVars =
|
|
|
|
this->GetProperty("__CMAKE_DELETE_CACHE_CHANGE_VARS_");
|
2007-12-13 23:54:29 +03:00
|
|
|
if(delCacheVars && delCacheVars[0] != 0)
|
|
|
|
{
|
|
|
|
return this->HandleDeleteCacheVariables(delCacheVars);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int cmake::ActualConfigure()
|
2003-05-29 19:14:05 +04:00
|
|
|
{
|
2004-10-04 20:31:09 +04:00
|
|
|
// Construct right now our path conversion table before it's too late:
|
|
|
|
this->UpdateConversionPathTable();
|
2005-06-16 22:56:15 +04:00
|
|
|
this->CleanupCommandsAndMacros();
|
2004-10-04 20:31:09 +04:00
|
|
|
|
2003-10-29 17:45:26 +03:00
|
|
|
int res = 0;
|
2011-07-13 20:59:51 +04:00
|
|
|
if ( this->GetWorkingMode() == NORMAL_MODE )
|
2003-10-29 17:45:26 +03:00
|
|
|
{
|
|
|
|
res = this->DoPreConfigureChecks();
|
|
|
|
}
|
2003-05-29 19:14:05 +04:00
|
|
|
if ( res < 0 )
|
|
|
|
{
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
if ( !res )
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CacheManager->AddCacheEntry
|
2010-10-31 16:46:09 +03:00
|
|
|
("CMAKE_HOME_DIRECTORY",
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GetHomeDirectory(),
|
|
|
|
"Start directory with the top level CMakeLists.txt file for this "
|
|
|
|
"project",
|
|
|
|
cmCacheManager::INTERNAL);
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-09-06 21:06:23 +04:00
|
|
|
// no generator specified on the command line
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->GlobalGenerator)
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
2010-10-31 16:46:09 +03:00
|
|
|
const char* genName =
|
2006-05-12 22:36:39 +04:00
|
|
|
this->CacheManager->GetCacheValue("CMAKE_GENERATOR");
|
2010-10-31 16:46:09 +03:00
|
|
|
const char* extraGenName =
|
2007-06-08 19:57:16 +04:00
|
|
|
this->CacheManager->GetCacheValue("CMAKE_EXTRA_GENERATOR");
|
2002-09-06 21:06:23 +04:00
|
|
|
if(genName)
|
|
|
|
{
|
2007-06-08 19:57:16 +04:00
|
|
|
std::string fullName = cmExternalMakefileProjectGenerator::
|
2014-02-25 02:36:27 +04:00
|
|
|
CreateFullGeneratorName(genName,
|
|
|
|
extraGenName ? extraGenName : "");
|
2014-03-11 03:04:11 +04:00
|
|
|
this->GlobalGenerator = this->CreateGlobalGenerator(fullName);
|
2004-04-29 18:26:22 +04:00
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->GlobalGenerator)
|
2004-04-29 18:26:22 +04:00
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
// set the global flag for unix style paths on cmSystemTools as
|
2003-08-22 00:22:23 +04:00
|
|
|
// soon as the generator is set. This allows gmake to be used
|
|
|
|
// on windows.
|
2006-03-15 19:02:08 +03:00
|
|
|
cmSystemTools::SetForceUnixPaths
|
|
|
|
(this->GlobalGenerator->GetForceUnixPaths());
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
|
|
|
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);
|
2006-02-01 02:50:16 +03:00
|
|
|
#elif defined(_WIN32) && !defined(__CYGWIN__) && !defined(CMAKE_BOOT_MINGW)
|
2004-07-27 21:40:47 +04:00
|
|
|
std::string installedCompiler;
|
2010-10-31 16:46:09 +03:00
|
|
|
// Try to find the newest VS installed on the computer and
|
2009-09-15 06:16:43 +04:00
|
|
|
// use that as a default if -G is not specified
|
2012-01-28 16:59:19 +04:00
|
|
|
const std::string vsregBase =
|
|
|
|
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\";
|
|
|
|
std::vector<std::string> vsVerions;
|
|
|
|
vsVerions.push_back("VisualStudio\\");
|
|
|
|
vsVerions.push_back("VCExpress\\");
|
2012-09-16 02:01:32 +04:00
|
|
|
vsVerions.push_back("WDExpress\\");
|
2009-09-15 06:16:43 +04:00
|
|
|
struct VSRegistryEntryName
|
|
|
|
{
|
|
|
|
const char* MSVersion;
|
|
|
|
const char* GeneratorName;
|
|
|
|
};
|
|
|
|
VSRegistryEntryName version[] = {
|
|
|
|
{"6.0", "Visual Studio 6"},
|
|
|
|
{"7.0", "Visual Studio 7"},
|
2009-09-17 05:02:57 +04:00
|
|
|
{"7.1", "Visual Studio 7 .NET 2003"},
|
2009-09-15 06:16:43 +04:00
|
|
|
{"8.0", "Visual Studio 8 2005"},
|
|
|
|
{"9.0", "Visual Studio 9 2008"},
|
2013-10-28 18:08:11 +04:00
|
|
|
{"10.0", "Visual Studio 10 2010"},
|
|
|
|
{"11.0", "Visual Studio 11 2012"},
|
|
|
|
{"12.0", "Visual Studio 12 2013"},
|
2009-09-15 06:16:43 +04:00
|
|
|
{0, 0}};
|
2012-09-16 02:01:32 +04:00
|
|
|
for(int i=0; version[i].MSVersion != 0; i++)
|
2004-07-27 21:40:47 +04:00
|
|
|
{
|
2012-09-16 02:01:32 +04:00
|
|
|
for(size_t b=0; b < vsVerions.size(); b++)
|
2004-07-27 21:40:47 +04:00
|
|
|
{
|
2012-01-28 16:59:19 +04:00
|
|
|
std::string reg = vsregBase + vsVerions[b] + version[i].MSVersion;
|
|
|
|
reg += ";InstallDir]";
|
|
|
|
cmSystemTools::ExpandRegistryValues(reg,
|
|
|
|
cmSystemTools::KeyWOW64_32);
|
|
|
|
if (!(reg == "/registry"))
|
|
|
|
{
|
|
|
|
installedCompiler = version[i].GeneratorName;
|
2012-09-16 02:01:32 +04:00
|
|
|
break;
|
2012-01-28 16:59:19 +04:00
|
|
|
}
|
2004-07-27 21:40:47 +04:00
|
|
|
}
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
cmGlobalGenerator* gen
|
|
|
|
= this->CreateGlobalGenerator(installedCompiler.c_str());
|
2004-07-27 21:40:47 +04:00
|
|
|
if(!gen)
|
|
|
|
{
|
|
|
|
gen = new cmGlobalNMakeMakefileGenerator;
|
|
|
|
}
|
|
|
|
this->SetGlobalGenerator(gen);
|
2009-09-15 06:16:43 +04:00
|
|
|
std::cout << "-- Building for: " << gen->GetName() << "\n";
|
2002-09-06 21:06:23 +04:00
|
|
|
#else
|
2005-05-25 19:18:41 +04:00
|
|
|
this->SetGlobalGenerator(new cmGlobalUnixMakefileGenerator3);
|
2002-09-06 21:06:23 +04:00
|
|
|
#endif
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->GlobalGenerator)
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::Error("Could not create generator");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* genName = this->CacheManager->GetCacheValue("CMAKE_GENERATOR");
|
2002-09-06 21:06:23 +04:00
|
|
|
if(genName)
|
2002-08-28 22:51:10 +04:00
|
|
|
{
|
2013-10-28 18:08:11 +04:00
|
|
|
if(!this->GlobalGenerator->MatchesGeneratorName(genName))
|
2002-08-28 22:51:10 +04:00
|
|
|
{
|
2002-09-06 21:06:23 +04:00
|
|
|
std::string message = "Error: generator : ";
|
2006-03-15 19:02:08 +03:00
|
|
|
message += this->GlobalGenerator->GetName();
|
2002-09-06 21:06:23 +04:00
|
|
|
message += "\nDoes not match the generator used previously: ";
|
|
|
|
message += genName;
|
|
|
|
message +=
|
2014-03-21 16:28:37 +04:00
|
|
|
"\nEither remove the CMakeCache.txt file and CMakeFiles "
|
|
|
|
"directory or choose a different binary directory.";
|
2002-09-06 21:06:23 +04:00
|
|
|
cmSystemTools::Error(message.c_str());
|
|
|
|
return -2;
|
2002-08-28 22:51:10 +04:00
|
|
|
}
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->CacheManager->GetCacheValue("CMAKE_GENERATOR"))
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
2010-10-31 16:46:09 +03:00
|
|
|
this->CacheManager->AddCacheEntry("CMAKE_GENERATOR",
|
2014-02-25 02:36:27 +04:00
|
|
|
this->GlobalGenerator->GetName().c_str(),
|
2006-03-15 19:02:08 +03:00
|
|
|
"Name of generator.",
|
|
|
|
cmCacheManager::INTERNAL);
|
2010-10-31 16:46:09 +03:00
|
|
|
this->CacheManager->AddCacheEntry("CMAKE_EXTRA_GENERATOR",
|
2014-02-25 02:36:27 +04:00
|
|
|
this->GlobalGenerator->GetExtraGeneratorName().c_str(),
|
|
|
|
"Name of external makefile project generator.",
|
|
|
|
cmCacheManager::INTERNAL);
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
|
|
|
|
2012-12-10 19:42:33 +04:00
|
|
|
if(const char* tsName =
|
|
|
|
this->CacheManager->GetCacheValue("CMAKE_GENERATOR_TOOLSET"))
|
|
|
|
{
|
|
|
|
if(this->GeneratorToolset.empty())
|
|
|
|
{
|
|
|
|
this->GeneratorToolset = tsName;
|
|
|
|
}
|
|
|
|
else if(this->GeneratorToolset != tsName)
|
|
|
|
{
|
|
|
|
std::string message = "Error: generator toolset: ";
|
|
|
|
message += this->GeneratorToolset;
|
|
|
|
message += "\nDoes not match the toolset used previously: ";
|
|
|
|
message += tsName;
|
|
|
|
message +=
|
2014-03-21 16:28:37 +04:00
|
|
|
"\nEither remove the CMakeCache.txt file and CMakeFiles "
|
|
|
|
"directory or choose a different binary directory.";
|
2012-12-10 19:42:33 +04:00
|
|
|
cmSystemTools::Error(message.c_str());
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->CacheManager->AddCacheEntry("CMAKE_GENERATOR_TOOLSET",
|
|
|
|
this->GeneratorToolset.c_str(),
|
|
|
|
"Name of generator toolset.",
|
|
|
|
cmCacheManager::INTERNAL);
|
|
|
|
}
|
|
|
|
if(!this->GeneratorToolset.empty() &&
|
|
|
|
!this->GlobalGenerator->SetGeneratorToolset(this->GeneratorToolset))
|
|
|
|
{
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
|
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
|
2006-03-15 19:02:08 +03:00
|
|
|
if (!this->InTryCompile)
|
2002-09-13 18:41:20 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GlobalGenerator->ClearEnabledLanguages();
|
2002-09-13 18:41:20 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-03 20:06:40 +04:00
|
|
|
// Truncate log files
|
2006-03-15 19:02:08 +03:00
|
|
|
if (!this->InTryCompile)
|
2005-07-03 20:06:40 +04:00
|
|
|
{
|
|
|
|
this->TruncateOutputLog("CMakeOutput.log");
|
|
|
|
this->TruncateOutputLog("CMakeError.log");
|
|
|
|
}
|
|
|
|
|
2002-09-06 21:06:23 +04:00
|
|
|
// actually do the configure
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GlobalGenerator->Configure();
|
2002-09-06 21:06:23 +04:00
|
|
|
// 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:
|
2008-07-03 21:55:33 +04:00
|
|
|
|
|
|
|
// We used to always present LIBRARY_OUTPUT_PATH and
|
|
|
|
// EXECUTABLE_OUTPUT_PATH. They are now documented as old-style and
|
|
|
|
// should no longer be used. Therefore we present them only if the
|
|
|
|
// project requires compatibility with CMake 2.4. We detect this
|
2012-11-07 20:13:09 +04:00
|
|
|
// here by looking for the old CMAKE_BACKWARDS_COMPATIBILITY
|
2008-07-03 21:55:33 +04:00
|
|
|
// variable created when CMP0001 is not set to NEW.
|
|
|
|
if(this->GetCacheManager()->GetCacheValue("CMAKE_BACKWARDS_COMPATIBILITY"))
|
2006-03-15 19:02:08 +03:00
|
|
|
{
|
2008-07-03 21:55:33 +04:00
|
|
|
if(!this->CacheManager->GetCacheValue("LIBRARY_OUTPUT_PATH"))
|
|
|
|
{
|
|
|
|
this->CacheManager->AddCacheEntry
|
|
|
|
("LIBRARY_OUTPUT_PATH", "",
|
|
|
|
"Single output directory for building all libraries.",
|
|
|
|
cmCacheManager::PATH);
|
|
|
|
}
|
|
|
|
if(!this->CacheManager->GetCacheValue("EXECUTABLE_OUTPUT_PATH"))
|
|
|
|
{
|
|
|
|
this->CacheManager->AddCacheEntry
|
|
|
|
("EXECUTABLE_OUTPUT_PATH", "",
|
|
|
|
"Single output directory for building all executables.",
|
|
|
|
cmCacheManager::PATH);
|
|
|
|
}
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->CacheManager->GetCacheValue("CMAKE_USE_RELATIVE_PATHS"))
|
|
|
|
{
|
|
|
|
this->CacheManager->AddCacheEntry
|
2009-09-11 18:04:10 +04:00
|
|
|
("CMAKE_USE_RELATIVE_PATHS", "OFF",
|
|
|
|
"If true, cmake will use relative paths in makefiles and projects.",
|
|
|
|
cmCacheManager::BOOL);
|
2004-03-31 19:01:52 +04:00
|
|
|
cmCacheManager::CacheIterator it =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CacheManager->GetCacheIterator("CMAKE_USE_RELATIVE_PATHS");
|
2004-03-31 19:01:52 +04:00
|
|
|
if ( !it.PropertyExists("ADVANCED") )
|
|
|
|
{
|
|
|
|
it.SetProperty("ADVANCED", "1");
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
}
|
|
|
|
|
2003-05-14 00:11:14 +04:00
|
|
|
if(cmSystemTools::GetFatalErrorOccured() &&
|
2006-03-15 19:02:08 +03:00
|
|
|
(!this->CacheManager->GetCacheValue("CMAKE_MAKE_PROGRAM") ||
|
|
|
|
cmSystemTools::IsOff(this->CacheManager->
|
|
|
|
GetCacheValue("CMAKE_MAKE_PROGRAM"))))
|
2003-05-14 00:11:14 +04:00
|
|
|
{
|
|
|
|
// We must have a bad generator selection. Wipe the cache entry so the
|
|
|
|
// user can select another.
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CacheManager->RemoveCacheEntry("CMAKE_GENERATOR");
|
2007-06-16 00:07:16 +04:00
|
|
|
this->CacheManager->RemoveCacheEntry("CMAKE_EXTRA_GENERATOR");
|
2003-05-14 00:11:14 +04:00
|
|
|
}
|
2012-08-21 01:19:44 +04:00
|
|
|
|
|
|
|
cmMakefile* mf=this->GlobalGenerator->GetLocalGenerators()[0]->GetMakefile();
|
|
|
|
if (mf->IsOn("CTEST_USE_LAUNCHERS")
|
|
|
|
&& !this->GetProperty("RULE_LAUNCH_COMPILE", cmProperty::GLOBAL))
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("CTEST_USE_LAUNCHERS is enabled, but the "
|
|
|
|
"RULE_LAUNCH_COMPILE global property is not defined.\n"
|
|
|
|
"Did you forget to include(CTest) in the toplevel "
|
|
|
|
"CMakeLists.txt ?");
|
|
|
|
}
|
|
|
|
|
2006-02-15 06:03:16 +03:00
|
|
|
// only save the cache if there were no fatal errors
|
2011-07-13 20:59:51 +04:00
|
|
|
if ( this->GetWorkingMode() == NORMAL_MODE )
|
2003-10-29 17:45:26 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CacheManager->SaveCache(this->GetHomeOutputDirectory());
|
2003-10-29 17:45:26 +03:00
|
|
|
}
|
2002-09-06 21:06:23 +04:00
|
|
|
if(cmSystemTools::GetErrorOccuredFlag())
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2002-08-28 22:51:10 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-08-17 23:36:08 +04:00
|
|
|
void cmake::PreLoadCMakeFiles()
|
|
|
|
{
|
2011-02-03 05:17:23 +03:00
|
|
|
std::vector<std::string> args;
|
2004-08-17 23:36:08 +04:00
|
|
|
std::string pre_load = this->GetHomeDirectory();
|
2004-08-23 22:33:22 +04:00
|
|
|
if ( pre_load.size() > 0 )
|
2004-08-17 23:36:08 +04:00
|
|
|
{
|
2004-08-23 22:33:22 +04:00
|
|
|
pre_load += "/PreLoad.cmake";
|
|
|
|
if ( cmSystemTools::FileExists(pre_load.c_str()) )
|
|
|
|
{
|
2011-02-03 05:17:23 +03:00
|
|
|
this->ReadListFile(args, pre_load.c_str());
|
2004-08-23 22:33:22 +04:00
|
|
|
}
|
2004-08-17 23:36:08 +04:00
|
|
|
}
|
|
|
|
pre_load = this->GetHomeOutputDirectory();
|
2004-08-23 22:33:22 +04:00
|
|
|
if ( pre_load.size() > 0 )
|
2004-08-17 23:36:08 +04:00
|
|
|
{
|
2004-08-23 22:33:22 +04:00
|
|
|
pre_load += "/PreLoad.cmake";
|
|
|
|
if ( cmSystemTools::FileExists(pre_load.c_str()) )
|
|
|
|
{
|
2011-02-03 05:17:23 +03:00
|
|
|
this->ReadListFile(args, pre_load.c_str());
|
2004-08-23 22:33:22 +04:00
|
|
|
}
|
2004-08-17 23:36:08 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-06 21:06:23 +04:00
|
|
|
// handle a command line invocation
|
2003-04-29 18:04:05 +04:00
|
|
|
int cmake::Run(const std::vector<std::string>& args, bool noconfigure)
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
|
|
|
// Process the arguments
|
|
|
|
this->SetArgs(args);
|
2005-04-05 19:23:08 +04:00
|
|
|
if(cmSystemTools::GetErrorOccuredFlag())
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2008-03-12 00:25:49 +03:00
|
|
|
// If we are given a stamp list file check if it is really out of date.
|
|
|
|
if(!this->CheckStampList.empty() &&
|
|
|
|
cmakeCheckStampList(this->CheckStampList.c_str()))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-11-10 16:15:13 +03:00
|
|
|
// If we are given a stamp file check if it is really out of date.
|
|
|
|
if(!this->CheckStampFile.empty() &&
|
|
|
|
cmakeCheckStampFile(this->CheckStampFile.c_str()))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-07-13 20:59:51 +04:00
|
|
|
if ( this->GetWorkingMode() == NORMAL_MODE )
|
2003-01-22 18:33:34 +03:00
|
|
|
{
|
2003-10-29 17:45:26 +03:00
|
|
|
// load the cache
|
|
|
|
if(this->LoadCache() < 0)
|
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
cmSystemTools::Error("Error executing cmake::LoadCache(). Aborting.\n");
|
2003-10-29 17:45:26 +03:00
|
|
|
return -1;
|
|
|
|
}
|
2003-01-22 18:33:34 +03:00
|
|
|
}
|
2006-03-07 22:46:50 +03:00
|
|
|
else
|
|
|
|
{
|
2007-12-14 01:56:50 +03:00
|
|
|
this->AddCMakePaths();
|
2006-03-07 22:46:50 +03:00
|
|
|
}
|
2002-09-17 21:59:58 +04:00
|
|
|
// Add any cache args
|
2003-10-29 17:45:26 +03:00
|
|
|
if ( !this->SetCacheArgs(args) )
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Problem processing arguments. Aborting.\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2004-04-28 18:52:20 +04:00
|
|
|
|
2005-02-22 17:08:02 +03:00
|
|
|
// In script mode we terminate after running the script.
|
2011-07-13 20:59:51 +04:00
|
|
|
if(this->GetWorkingMode() != NORMAL_MODE)
|
2005-02-22 17:08:02 +03:00
|
|
|
{
|
2005-08-08 17:37:29 +04:00
|
|
|
if(cmSystemTools::GetErrorOccuredFlag())
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2005-02-22 17:08:02 +03:00
|
|
|
}
|
|
|
|
|
2010-06-21 18:50:11 +04:00
|
|
|
// If MAKEFLAGS are given in the environment, remove the environment
|
|
|
|
// variable. This will prevent try-compile from succeeding when it
|
|
|
|
// should fail (if "-i" is an option). We cannot simply test
|
|
|
|
// whether "-i" is given and remove it because some make programs
|
|
|
|
// encode the MAKEFLAGS variable in a strange way.
|
|
|
|
if(getenv("MAKEFLAGS"))
|
|
|
|
{
|
|
|
|
cmSystemTools::PutEnv("MAKEFLAGS=");
|
|
|
|
}
|
|
|
|
|
2004-08-17 23:36:08 +04:00
|
|
|
this->PreLoadCMakeFiles();
|
|
|
|
|
2003-04-29 18:04:05 +04:00
|
|
|
if ( noconfigure )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-03-10 21:39:38 +03:00
|
|
|
// now run the global generate
|
|
|
|
// Check the state of the build system to see if we need to regenerate.
|
|
|
|
if(!this->CheckBuildSystem())
|
|
|
|
{
|
|
|
|
return 0;
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-03-10 21:39:38 +03:00
|
|
|
// If we are doing global generate, we better set start and start
|
|
|
|
// output directory to the root of the project.
|
|
|
|
std::string oldstartdir = this->GetStartDirectory();
|
|
|
|
std::string oldstartoutputdir = this->GetStartOutputDirectory();
|
|
|
|
this->SetStartDirectory(this->GetHomeDirectory());
|
|
|
|
this->SetStartOutputDirectory(this->GetHomeOutputDirectory());
|
2005-03-11 16:38:15 +03:00
|
|
|
int ret = this->Configure();
|
2011-07-13 20:59:51 +04:00
|
|
|
if (ret || this->GetWorkingMode() != NORMAL_MODE)
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
2007-11-19 22:22:38 +03:00
|
|
|
#if defined(CMAKE_HAVE_VS_GENERATORS)
|
2007-11-19 21:45:16 +03:00
|
|
|
if(!this->VSSolutionFile.empty() && this->GlobalGenerator)
|
|
|
|
{
|
|
|
|
// CMake is running to regenerate a Visual Studio build tree
|
|
|
|
// during a build from the VS IDE. The build files cannot be
|
|
|
|
// regenerated, so we should stop the build.
|
|
|
|
cmSystemTools::Message(
|
|
|
|
"CMake Configure step failed. "
|
|
|
|
"Build files cannot be regenerated correctly. "
|
|
|
|
"Attempting to stop IDE build.");
|
|
|
|
cmGlobalVisualStudioGenerator* gg =
|
|
|
|
static_cast<cmGlobalVisualStudioGenerator*>(this->GlobalGenerator);
|
|
|
|
gg->CallVisualStudioMacro(cmGlobalVisualStudioGenerator::MacroStop,
|
|
|
|
this->VSSolutionFile.c_str());
|
|
|
|
}
|
2007-11-19 22:22:38 +03:00
|
|
|
#endif
|
2005-03-10 21:39:38 +03:00
|
|
|
return ret;
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
2005-03-10 21:39:38 +03:00
|
|
|
ret = this->Generate();
|
|
|
|
std::string message = "Build files have been written to: ";
|
|
|
|
message += this->GetHomeOutputDirectory();
|
|
|
|
this->UpdateProgress(message.c_str(), -1);
|
|
|
|
if(ret)
|
|
|
|
{
|
|
|
|
return ret;
|
|
|
|
}
|
2014-03-11 03:04:11 +04:00
|
|
|
this->SetStartDirectory(oldstartdir);
|
|
|
|
this->SetStartOutputDirectory(oldstartoutputdir);
|
2005-03-10 21:39:38 +03:00
|
|
|
|
2002-11-13 23:20:20 +03:00
|
|
|
return ret;
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int cmake::Generate()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->GlobalGenerator)
|
2003-08-26 23:06:52 +04:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GlobalGenerator->Generate();
|
2012-10-07 15:10:24 +04:00
|
|
|
if ( !this->GraphVizFile.empty() )
|
|
|
|
{
|
|
|
|
std::cout << "Generate graphviz: " << this->GraphVizFile << std::endl;
|
|
|
|
this->GenerateGraphViz(this->GraphVizFile.c_str());
|
|
|
|
}
|
2011-03-24 16:24:27 +03:00
|
|
|
if(this->WarnUnusedCli)
|
|
|
|
{
|
|
|
|
this->RunCheckForUnusedVariables();
|
|
|
|
}
|
2002-09-06 21:06:23 +04:00
|
|
|
if(cmSystemTools::GetErrorOccuredFlag())
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2011-09-01 16:49:00 +04:00
|
|
|
// Save the cache again after a successful Generate so that any internal
|
|
|
|
// variables created during Generate are saved. (Specifically target GUIDs
|
|
|
|
// for the Visual Studio and Xcode generators.)
|
|
|
|
if ( this->GetWorkingMode() == NORMAL_MODE )
|
|
|
|
{
|
|
|
|
this->CacheManager->SaveCache(this->GetHomeOutputDirectory());
|
|
|
|
}
|
2002-09-06 21:06:23 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
void cmake::AddCacheEntry(const std::string& key, const char* value,
|
2006-03-10 21:06:26 +03:00
|
|
|
const char* helpString,
|
2002-12-04 18:57:22 +03:00
|
|
|
int type)
|
|
|
|
{
|
2010-10-31 16:46:09 +03:00
|
|
|
this->CacheManager->AddCacheEntry(key, value,
|
2006-03-15 19:02:08 +03:00
|
|
|
helpString,
|
|
|
|
cmCacheManager::CacheEntryType(type));
|
2002-12-04 18:57:22 +03:00
|
|
|
}
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
const char* cmake::GetCacheDefinition(const std::string& name) const
|
2002-09-06 21:06:23 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->CacheManager->GetCacheValue(name);
|
2002-09-06 21:06:23 +04:00
|
|
|
}
|
2002-09-11 00:51:29 +04:00
|
|
|
|
|
|
|
void cmake::AddDefaultCommands()
|
|
|
|
{
|
|
|
|
std::list<cmCommand*> commands;
|
2013-06-14 16:35:52 +04:00
|
|
|
GetBootstrapCommands1(commands);
|
|
|
|
GetBootstrapCommands2(commands);
|
2002-09-11 00:51:29 +04:00
|
|
|
GetPredefinedCommands(commands);
|
|
|
|
for(std::list<cmCommand*>::iterator i = commands.begin();
|
|
|
|
i != commands.end(); ++i)
|
|
|
|
{
|
|
|
|
this->AddCommand(*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-08 05:52:10 +04:00
|
|
|
void cmake::AddDefaultGenerators()
|
|
|
|
{
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
2006-02-01 03:34:57 +03:00
|
|
|
# if !defined(CMAKE_BOOT_MINGW)
|
2012-11-19 19:13:54 +04:00
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalVisualStudio6Generator::NewFactory());
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalVisualStudio7Generator::NewFactory());
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalVisualStudio10Generator::NewFactory());
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalVisualStudio11Generator::NewFactory());
|
2013-06-29 00:12:08 +04:00
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalVisualStudio12Generator::NewFactory());
|
2012-11-19 19:13:54 +04:00
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalVisualStudio71Generator::NewFactory());
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalVisualStudio8Generator::NewFactory());
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalVisualStudio9Generator::NewFactory());
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalBorlandMakefileGenerator::NewFactory());
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalNMakeMakefileGenerator::NewFactory());
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalJOMMakefileGenerator::NewFactory());
|
2006-02-01 03:34:57 +03:00
|
|
|
# endif
|
2012-11-19 19:13:54 +04:00
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalMSYSMakefileGenerator::NewFactory());
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalMinGWMakefileGenerator::NewFactory());
|
2003-08-22 00:22:23 +04:00
|
|
|
#endif
|
2012-11-19 19:13:54 +04:00
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalUnixMakefileGenerator3::NewFactory());
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalNinjaGenerator::NewFactory());
|
2014-03-17 22:30:38 +04:00
|
|
|
#if defined(CMAKE_USE_WMAKE)
|
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalWatcomWMakeGenerator::NewFactory());
|
|
|
|
#endif
|
2005-03-14 21:23:14 +03:00
|
|
|
#ifdef CMAKE_USE_XCODE
|
2012-11-19 19:13:54 +04:00
|
|
|
this->Generators.push_back(
|
|
|
|
cmGlobalXCodeGenerator::NewFactory());
|
2005-03-14 21:23:14 +03:00
|
|
|
#endif
|
2003-07-08 05:52:10 +04:00
|
|
|
}
|
|
|
|
|
2002-11-07 17:04:20 +03:00
|
|
|
int cmake::LoadCache()
|
2002-09-17 21:59:58 +04:00
|
|
|
{
|
2005-08-11 21:20:23 +04:00
|
|
|
// could we not read the cache
|
2006-03-15 19:02:08 +03:00
|
|
|
if (!this->CacheManager->LoadCache(this->GetHomeOutputDirectory()))
|
2005-08-11 21:20:23 +04:00
|
|
|
{
|
2012-02-26 22:44:20 +04:00
|
|
|
// if it does exist, but isn't readable then warn the user
|
2005-08-11 21:20:23 +04:00
|
|
|
std::string cacheFile = this->GetHomeOutputDirectory();
|
|
|
|
cacheFile += "/CMakeCache.txt";
|
|
|
|
if(cmSystemTools::FileExists(cacheFile.c_str()))
|
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
cmSystemTools::Error(
|
|
|
|
"There is a CMakeCache.txt file for the current binary tree but "
|
|
|
|
"cmake does not have permission to read it. Please check the "
|
|
|
|
"permissions of the directory you are trying to run CMake on.");
|
2005-08-11 21:20:23 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2002-09-17 21:59:58 +04:00
|
|
|
|
|
|
|
// setup CMAKE_ROOT and CMAKE_COMMAND
|
2007-12-14 01:56:50 +03:00
|
|
|
if(!this->AddCMakePaths())
|
2002-09-17 21:59:58 +04:00
|
|
|
{
|
|
|
|
return -3;
|
2006-03-10 21:06:26 +03:00
|
|
|
}
|
2002-09-17 21:59:58 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
void cmake::SetProgressCallback(ProgressCallbackType f, void *cd)
|
2002-09-26 23:14:20 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ProgressCallback = f;
|
|
|
|
this->ProgressCallbackClientData = cd;
|
2002-09-26 23:14:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmake::UpdateProgress(const char *msg, float prog)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->ProgressCallback && !this->InTryCompile)
|
2002-09-26 23:14:20 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
(*this->ProgressCallback)(msg, prog, this->ProgressCallbackClientData);
|
2002-09-26 23:14:20 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2003-02-14 18:53:37 +03:00
|
|
|
|
2003-07-08 05:52:10 +04:00
|
|
|
void cmake::GetGeneratorDocumentation(std::vector<cmDocumentationEntry>& v)
|
|
|
|
{
|
2012-11-19 19:13:54 +04:00
|
|
|
for(RegisteredGeneratorsVector::const_iterator i =
|
|
|
|
this->Generators.begin(); i != this->Generators.end(); ++i)
|
2003-07-08 05:52:10 +04:00
|
|
|
{
|
|
|
|
cmDocumentationEntry e;
|
2012-11-19 19:13:54 +04:00
|
|
|
(*i)->GetDocumentation(e);
|
2003-07-08 05:52:10 +04:00
|
|
|
v.push_back(e);
|
|
|
|
}
|
2012-11-19 19:13:54 +04:00
|
|
|
for(RegisteredExtraGeneratorsMap::const_iterator i =
|
|
|
|
this->ExtraGenerators.begin(); i != this->ExtraGenerators.end(); ++i)
|
2007-06-08 19:57:16 +04:00
|
|
|
{
|
|
|
|
cmDocumentationEntry e;
|
|
|
|
cmExternalMakefileProjectGenerator* generator = (i->second)();
|
2014-03-11 03:04:11 +04:00
|
|
|
generator->GetDocumentation(e, i->first);
|
2007-10-22 20:49:09 +04:00
|
|
|
e.Name = i->first;
|
2007-06-08 19:57:16 +04:00
|
|
|
delete generator;
|
|
|
|
v.push_back(e);
|
|
|
|
}
|
2003-07-08 05:52:10 +04:00
|
|
|
}
|
2004-04-18 22:41:46 +04:00
|
|
|
|
2004-10-04 20:31:09 +04:00
|
|
|
void cmake::UpdateConversionPathTable()
|
|
|
|
{
|
|
|
|
// Update the path conversion table with any specified file:
|
2010-10-31 16:46:09 +03:00
|
|
|
const char* tablepath =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->CacheManager->GetCacheValue("CMAKE_PATH_TRANSLATION_FILE");
|
2004-10-04 20:31:09 +04:00
|
|
|
|
|
|
|
if(tablepath)
|
|
|
|
{
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream table( tablepath );
|
2004-10-05 19:37:03 +04:00
|
|
|
if(!table)
|
2004-10-04 20:31:09 +04:00
|
|
|
{
|
2006-03-10 21:06:26 +03:00
|
|
|
cmSystemTools::Error("CMAKE_PATH_TRANSLATION_FILE set to ", tablepath,
|
|
|
|
". CMake can not open file.");
|
2004-10-05 19:37:03 +04:00
|
|
|
cmSystemTools::ReportLastSystemError("CMake can not open file.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::string a, b;
|
2004-10-04 20:31:09 +04:00
|
|
|
while(!table.eof())
|
|
|
|
{
|
|
|
|
// two entries per line
|
|
|
|
table >> a; table >> b;
|
|
|
|
cmSystemTools::AddTranslationPath( a.c_str(), b.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-10-15 17:24:44 +04:00
|
|
|
|
2004-10-30 00:50:46 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
int cmake::CheckBuildSystem()
|
2004-10-15 17:24:44 +04:00
|
|
|
{
|
2006-04-12 06:39:34 +04:00
|
|
|
// We do not need to rerun CMake. Check dependency integrity. Use
|
|
|
|
// the make system's VERBOSE environment variable to enable verbose
|
2009-12-23 21:51:46 +03:00
|
|
|
// output. This can be skipped by setting CMAKE_NO_VERBOSE (which is set
|
|
|
|
// by the Eclipse and KDevelop generators).
|
2010-10-31 16:46:09 +03:00
|
|
|
bool verbose = ((cmSystemTools::GetEnv("VERBOSE") != 0)
|
2009-12-23 21:51:46 +03:00
|
|
|
&& (cmSystemTools::GetEnv("CMAKE_NO_VERBOSE") == 0));
|
|
|
|
|
2004-10-30 00:50:46 +04:00
|
|
|
// This method will check the integrity of the build system if the
|
|
|
|
// option was given on the command line. It reads the given file to
|
2006-06-15 17:45:02 +04:00
|
|
|
// determine whether CMake should rerun.
|
2004-10-30 00:50:46 +04:00
|
|
|
|
2004-10-15 17:24:44 +04:00
|
|
|
// If no file is provided for the check, we have to rerun.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->CheckBuildSystemArgument.size() == 0)
|
2010-10-31 16:46:09 +03:00
|
|
|
{
|
2006-04-12 06:39:34 +04:00
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
|
|
|
msg << "Re-run cmake no build system arguments\n";
|
|
|
|
cmSystemTools::Stdout(msg.str().c_str());
|
|
|
|
}
|
2004-10-15 17:24:44 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the file provided does not exist, we have to rerun.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!cmSystemTools::FileExists(this->CheckBuildSystemArgument.c_str()))
|
2004-10-15 17:24:44 +04:00
|
|
|
{
|
2006-04-12 06:39:34 +04:00
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
2010-10-31 16:46:09 +03:00
|
|
|
msg << "Re-run cmake missing file: "
|
2014-03-11 16:35:32 +04:00
|
|
|
<< this->CheckBuildSystemArgument << "\n";
|
2006-04-12 06:39:34 +04:00
|
|
|
cmSystemTools::Stdout(msg.str().c_str());
|
|
|
|
}
|
2004-10-15 17:24:44 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the rerun check file and use it to decide whether to do the
|
|
|
|
// global generate.
|
|
|
|
cmake cm;
|
|
|
|
cmGlobalGenerator gg;
|
|
|
|
gg.SetCMakeInstance(&cm);
|
2012-11-21 03:56:36 +04:00
|
|
|
cmsys::auto_ptr<cmLocalGenerator> lg(gg.CreateLocalGenerator());
|
2004-10-15 17:24:44 +04:00
|
|
|
cmMakefile* mf = lg->GetMakefile();
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!mf->ReadListFile(0, this->CheckBuildSystemArgument.c_str()) ||
|
2004-10-15 17:24:44 +04:00
|
|
|
cmSystemTools::GetErrorOccuredFlag())
|
|
|
|
{
|
2006-04-12 06:39:34 +04:00
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
2010-10-31 16:46:09 +03:00
|
|
|
msg << "Re-run cmake error reading : "
|
2014-03-11 16:35:32 +04:00
|
|
|
<< this->CheckBuildSystemArgument << "\n";
|
2006-04-12 06:39:34 +04:00
|
|
|
cmSystemTools::Stdout(msg.str().c_str());
|
|
|
|
}
|
2004-10-15 17:24:44 +04:00
|
|
|
// There was an error reading the file. Just rerun.
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-12-21 20:22:12 +03:00
|
|
|
if(this->ClearBuildSystem)
|
2006-06-15 17:45:02 +04:00
|
|
|
{
|
2007-12-21 20:22:12 +03:00
|
|
|
// Get the generator used for this build system.
|
|
|
|
const char* genName = mf->GetDefinition("CMAKE_DEPENDS_GENERATOR");
|
|
|
|
if(!genName || genName[0] == '\0')
|
|
|
|
{
|
|
|
|
genName = "Unix Makefiles";
|
|
|
|
}
|
2007-12-20 00:36:30 +03:00
|
|
|
|
2007-12-21 20:22:12 +03:00
|
|
|
// Create the generator and use it to clear the dependencies.
|
2012-11-21 03:56:36 +04:00
|
|
|
cmsys::auto_ptr<cmGlobalGenerator>
|
2007-12-21 20:22:12 +03:00
|
|
|
ggd(this->CreateGlobalGenerator(genName));
|
|
|
|
if(ggd.get())
|
2007-12-20 00:36:30 +03:00
|
|
|
{
|
2012-11-21 03:56:36 +04:00
|
|
|
cmsys::auto_ptr<cmLocalGenerator> lgd(ggd->CreateLocalGenerator());
|
2007-12-20 00:36:30 +03:00
|
|
|
lgd->ClearDependencies(mf, verbose);
|
|
|
|
}
|
2006-06-15 17:45:02 +04:00
|
|
|
}
|
|
|
|
|
2009-02-06 19:18:56 +03:00
|
|
|
// If any byproduct of makefile generation is missing we must re-run.
|
|
|
|
std::vector<std::string> products;
|
|
|
|
if(const char* productStr = mf->GetDefinition("CMAKE_MAKEFILE_PRODUCTS"))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(productStr, products);
|
|
|
|
}
|
|
|
|
for(std::vector<std::string>::const_iterator pi = products.begin();
|
|
|
|
pi != products.end(); ++pi)
|
|
|
|
{
|
2009-02-06 19:49:00 +03:00
|
|
|
if(!(cmSystemTools::FileExists(pi->c_str()) ||
|
|
|
|
cmSystemTools::FileIsSymlink(pi->c_str())))
|
2009-02-06 19:18:56 +03:00
|
|
|
{
|
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
|
|
|
msg << "Re-run cmake, missing byproduct: " << *pi << "\n";
|
|
|
|
cmSystemTools::Stdout(msg.str().c_str());
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-15 17:24:44 +04:00
|
|
|
// Get the set of dependencies and outputs.
|
2007-12-19 19:51:30 +03:00
|
|
|
std::vector<std::string> depends;
|
|
|
|
std::vector<std::string> outputs;
|
2004-10-15 17:24:44 +04:00
|
|
|
const char* dependsStr = mf->GetDefinition("CMAKE_MAKEFILE_DEPENDS");
|
|
|
|
const char* outputsStr = mf->GetDefinition("CMAKE_MAKEFILE_OUTPUTS");
|
2007-12-19 19:51:30 +03:00
|
|
|
if(dependsStr && outputsStr)
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(dependsStr, depends);
|
|
|
|
cmSystemTools::ExpandListArgument(outputsStr, outputs);
|
|
|
|
}
|
|
|
|
if(depends.empty() || outputs.empty())
|
2004-10-15 17:24:44 +04:00
|
|
|
{
|
|
|
|
// Not enough information was provided to do the test. Just rerun.
|
2006-04-12 06:39:34 +04:00
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
|
|
|
msg << "Re-run cmake no CMAKE_MAKEFILE_DEPENDS "
|
|
|
|
"or CMAKE_MAKEFILE_OUTPUTS :\n";
|
|
|
|
cmSystemTools::Stdout(msg.str().c_str());
|
|
|
|
}
|
2004-10-15 17:24:44 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-03-19 13:41:00 +03:00
|
|
|
// Find the newest dependency.
|
2007-12-19 19:51:30 +03:00
|
|
|
std::vector<std::string>::iterator dep = depends.begin();
|
|
|
|
std::string dep_newest = *dep++;
|
|
|
|
for(;dep != depends.end(); ++dep)
|
2004-10-15 17:24:44 +04:00
|
|
|
{
|
2007-12-19 19:51:30 +03:00
|
|
|
int result = 0;
|
|
|
|
if(this->FileComparison->FileTimeCompare(dep_newest.c_str(),
|
|
|
|
dep->c_str(), &result))
|
2004-10-15 17:24:44 +04:00
|
|
|
{
|
2007-12-19 19:51:30 +03:00
|
|
|
if(result < 0)
|
2004-10-15 17:24:44 +04:00
|
|
|
{
|
2007-12-19 19:51:30 +03:00
|
|
|
dep_newest = *dep;
|
2004-10-15 17:24:44 +04:00
|
|
|
}
|
|
|
|
}
|
2007-12-19 19:51:30 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
|
|
|
msg << "Re-run cmake: build system dependency is missing\n";
|
|
|
|
cmSystemTools::Stdout(msg.str().c_str());
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2004-10-15 17:24:44 +04:00
|
|
|
}
|
|
|
|
|
2011-03-19 13:41:00 +03:00
|
|
|
// Find the oldest output.
|
2007-12-19 19:51:30 +03:00
|
|
|
std::vector<std::string>::iterator out = outputs.begin();
|
|
|
|
std::string out_oldest = *out++;
|
|
|
|
for(;out != outputs.end(); ++out)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
if(this->FileComparison->FileTimeCompare(out_oldest.c_str(),
|
|
|
|
out->c_str(), &result))
|
|
|
|
{
|
|
|
|
if(result > 0)
|
|
|
|
{
|
|
|
|
out_oldest = *out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
|
|
|
msg << "Re-run cmake: build system output is missing\n";
|
|
|
|
cmSystemTools::Stdout(msg.str().c_str());
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If any output is older than any dependency then rerun.
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
if(!this->FileComparison->FileTimeCompare(out_oldest.c_str(),
|
|
|
|
dep_newest.c_str(),
|
|
|
|
&result) ||
|
|
|
|
result < 0)
|
|
|
|
{
|
|
|
|
if(verbose)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
2014-03-11 16:35:32 +04:00
|
|
|
msg << "Re-run cmake file: " << out_oldest
|
|
|
|
<< " older than: " << dep_newest << "\n";
|
2007-12-19 19:51:30 +03:00
|
|
|
cmSystemTools::Stdout(msg.str().c_str());
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-15 17:24:44 +04:00
|
|
|
// No need to rerun.
|
|
|
|
return 0;
|
|
|
|
}
|
2005-07-03 06:25:43 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmake::TruncateOutputLog(const char* fname)
|
|
|
|
{
|
|
|
|
std::string fullPath = this->GetHomeOutputDirectory();
|
|
|
|
fullPath += "/";
|
|
|
|
fullPath += fname;
|
|
|
|
struct stat st;
|
|
|
|
if ( ::stat(fullPath.c_str(), &st) )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if ( !this->CacheManager->GetCacheValue("CMAKE_CACHEFILE_DIR") )
|
2005-07-03 06:25:43 +04:00
|
|
|
{
|
|
|
|
cmSystemTools::RemoveFile(fullPath.c_str());
|
|
|
|
return;
|
|
|
|
}
|
2007-11-05 22:34:36 +03:00
|
|
|
off_t fsize = st.st_size;
|
|
|
|
const off_t maxFileSize = 50 * 1024;
|
2005-07-03 06:25:43 +04:00
|
|
|
if ( fsize < maxFileSize )
|
|
|
|
{
|
|
|
|
//TODO: truncate file
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-23 18:00:44 +03:00
|
|
|
inline std::string removeQuotes(const std::string& s)
|
|
|
|
{
|
|
|
|
if(s[0] == '\"' && s[s.size()-1] == '\"')
|
|
|
|
{
|
|
|
|
return s.substr(1, s.size()-2);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2010-09-01 18:22:08 +04:00
|
|
|
void cmake::MarkCliAsUsed(const std::string& variable)
|
|
|
|
{
|
|
|
|
this->UsedCliVariables[variable] = true;
|
|
|
|
}
|
|
|
|
|
2007-06-15 18:10:24 +04:00
|
|
|
void cmake::GenerateGraphViz(const char* fileName) const
|
2006-03-03 22:24:31 +03:00
|
|
|
{
|
2010-11-09 23:37:51 +03:00
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
2012-11-21 03:56:36 +04:00
|
|
|
cmsys::auto_ptr<cmGraphVizWriter> gvWriter(
|
2010-11-09 23:37:51 +03:00
|
|
|
new cmGraphVizWriter(this->GetGlobalGenerator()->GetLocalGenerators()));
|
2006-03-03 22:24:31 +03:00
|
|
|
|
2010-11-09 23:37:51 +03:00
|
|
|
std::string settingsFile = this->GetHomeOutputDirectory();
|
|
|
|
settingsFile += "/CMakeGraphVizOptions.cmake";
|
|
|
|
std::string fallbackSettingsFile = this->GetHomeDirectory();
|
|
|
|
fallbackSettingsFile += "/CMakeGraphVizOptions.cmake";
|
2006-03-03 22:24:31 +03:00
|
|
|
|
2010-11-09 23:37:51 +03:00
|
|
|
gvWriter->ReadSettings(settingsFile.c_str(), fallbackSettingsFile.c_str());
|
2006-03-03 22:24:31 +03:00
|
|
|
|
2010-11-09 23:37:51 +03:00
|
|
|
gvWriter->WritePerTargetFiles(fileName);
|
2011-02-06 20:34:48 +03:00
|
|
|
gvWriter->WriteTargetDependersFiles(fileName);
|
2010-11-09 23:37:51 +03:00
|
|
|
gvWriter->WriteGlobalFile(fileName);
|
2006-03-03 22:24:31 +03:00
|
|
|
|
2010-11-09 23:37:51 +03:00
|
|
|
#endif
|
2006-03-03 22:24:31 +03:00
|
|
|
}
|
2007-06-26 21:05:27 +04:00
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
void cmake::DefineProperty(const std::string& name,
|
|
|
|
cmProperty::ScopeType scope,
|
2006-12-07 17:45:32 +03:00
|
|
|
const char *ShortDescription,
|
|
|
|
const char *FullDescription,
|
2013-09-17 17:08:58 +04:00
|
|
|
bool chained)
|
2006-12-07 17:45:32 +03:00
|
|
|
{
|
2007-06-25 18:34:21 +04:00
|
|
|
this->PropertyDefinitions[scope].DefineProperty(name,scope,ShortDescription,
|
2010-10-31 16:46:09 +03:00
|
|
|
FullDescription,
|
2007-10-22 20:49:09 +04:00
|
|
|
chained);
|
2006-12-07 17:45:32 +03:00
|
|
|
}
|
|
|
|
|
2007-10-24 22:43:10 +04:00
|
|
|
cmPropertyDefinition *cmake
|
2013-09-03 00:27:32 +04:00
|
|
|
::GetPropertyDefinition(const std::string& name,
|
2007-10-24 22:43:10 +04:00
|
|
|
cmProperty::ScopeType scope)
|
|
|
|
{
|
|
|
|
if (this->IsPropertyDefined(name,scope))
|
|
|
|
{
|
|
|
|
return &(this->PropertyDefinitions[scope][name]);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
bool cmake::IsPropertyDefined(const std::string& name,
|
|
|
|
cmProperty::ScopeType scope)
|
2006-12-07 17:45:32 +03:00
|
|
|
{
|
2007-06-25 18:34:21 +04:00
|
|
|
return this->PropertyDefinitions[scope].IsPropertyDefined(name);
|
2006-12-07 17:45:32 +03:00
|
|
|
}
|
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
bool cmake::IsPropertyChained(const std::string& name,
|
|
|
|
cmProperty::ScopeType scope)
|
2006-12-07 17:45:32 +03:00
|
|
|
{
|
2007-06-25 18:34:21 +04:00
|
|
|
return this->PropertyDefinitions[scope].IsPropertyChained(name);
|
2006-12-07 17:45:32 +03:00
|
|
|
}
|
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
void cmake::SetProperty(const std::string& prop, const char* value)
|
2006-12-07 17:45:32 +03:00
|
|
|
{
|
2008-09-05 01:34:25 +04:00
|
|
|
// Special hook to invalidate cached value.
|
2013-09-03 00:27:32 +04:00
|
|
|
if(prop == "DEBUG_CONFIGURATIONS")
|
2008-09-05 01:34:25 +04:00
|
|
|
{
|
|
|
|
this->DebugConfigs.clear();
|
|
|
|
}
|
|
|
|
|
2007-10-30 17:57:09 +03:00
|
|
|
this->Properties.SetProperty(prop, value, cmProperty::GLOBAL);
|
2006-12-07 17:45:32 +03:00
|
|
|
}
|
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
void cmake::AppendProperty(const std::string& prop,
|
|
|
|
const char* value, bool asString)
|
2008-01-18 02:13:55 +03:00
|
|
|
{
|
2008-09-05 01:34:25 +04:00
|
|
|
// Special hook to invalidate cached value.
|
2013-09-03 00:27:32 +04:00
|
|
|
if(prop == "DEBUG_CONFIGURATIONS")
|
2008-09-05 01:34:25 +04:00
|
|
|
{
|
|
|
|
this->DebugConfigs.clear();
|
|
|
|
}
|
|
|
|
|
2011-07-14 01:14:41 +04:00
|
|
|
this->Properties.AppendProperty(prop, value, cmProperty::GLOBAL, asString);
|
2008-01-18 02:13:55 +03:00
|
|
|
}
|
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
const char *cmake::GetProperty(const std::string& prop)
|
2006-12-07 17:45:32 +03:00
|
|
|
{
|
|
|
|
return this->GetProperty(prop, cmProperty::GLOBAL);
|
|
|
|
}
|
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
const char *cmake::GetProperty(const std::string& prop,
|
|
|
|
cmProperty::ScopeType scope)
|
2006-12-07 17:45:32 +03:00
|
|
|
{
|
|
|
|
bool chain = false;
|
2007-06-25 17:51:37 +04:00
|
|
|
|
|
|
|
// watch for special properties
|
|
|
|
std::string output = "";
|
2013-09-03 00:27:32 +04:00
|
|
|
if ( prop == "CACHE_VARIABLES" )
|
2007-06-25 17:51:37 +04:00
|
|
|
{
|
|
|
|
cmCacheManager::CacheIterator cit =
|
|
|
|
this->GetCacheManager()->GetCacheIterator();
|
|
|
|
for ( cit.Begin(); !cit.IsAtEnd(); cit.Next() )
|
|
|
|
{
|
|
|
|
if ( output.size() )
|
|
|
|
{
|
|
|
|
output += ";";
|
|
|
|
}
|
|
|
|
output += cit.GetName();
|
|
|
|
}
|
|
|
|
this->SetProperty("CACHE_VARIABLES", output.c_str());
|
|
|
|
}
|
2013-09-03 00:27:32 +04:00
|
|
|
else if ( prop == "COMMANDS" )
|
2007-06-25 17:51:37 +04:00
|
|
|
{
|
2010-10-31 16:46:09 +03:00
|
|
|
cmake::RegisteredCommandsMap::iterator cmds
|
2007-06-25 17:51:37 +04:00
|
|
|
= this->GetCommands()->begin();
|
|
|
|
for (unsigned int cc=0 ; cmds != this->GetCommands()->end(); ++ cmds )
|
|
|
|
{
|
|
|
|
if ( cc > 0 )
|
|
|
|
{
|
|
|
|
output += ";";
|
|
|
|
}
|
|
|
|
output += cmds->first.c_str();
|
|
|
|
cc++;
|
|
|
|
}
|
|
|
|
this->SetProperty("COMMANDS",output.c_str());
|
|
|
|
}
|
2013-09-03 00:27:32 +04:00
|
|
|
else if ( prop == "IN_TRY_COMPILE" )
|
2008-02-12 01:00:36 +03:00
|
|
|
{
|
|
|
|
this->SetProperty("IN_TRY_COMPILE",
|
|
|
|
this->GetIsInTryCompile()? "1":"0");
|
|
|
|
}
|
2013-09-03 00:27:32 +04:00
|
|
|
else if ( prop == "ENABLED_LANGUAGES" )
|
2008-06-17 21:13:21 +04:00
|
|
|
{
|
|
|
|
std::string lang;
|
|
|
|
if(this->GlobalGenerator)
|
|
|
|
{
|
|
|
|
std::vector<std::string> enLangs;
|
|
|
|
this->GlobalGenerator->GetEnabledLanguages(enLangs);
|
|
|
|
const char* sep = "";
|
|
|
|
for(std::vector<std::string>::iterator i = enLangs.begin();
|
|
|
|
i != enLangs.end(); ++i)
|
|
|
|
{
|
|
|
|
lang += sep;
|
|
|
|
sep = ";";
|
|
|
|
lang += *i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this->SetProperty("ENABLED_LANGUAGES", lang.c_str());
|
|
|
|
}
|
2013-11-04 04:15:43 +04:00
|
|
|
#define STRING_LIST_ELEMENT(F) ";" #F
|
|
|
|
if (prop == "CMAKE_C_KNOWN_FEATURES")
|
|
|
|
{
|
|
|
|
return FOR_EACH_C_FEATURE(STRING_LIST_ELEMENT) + 1;
|
|
|
|
}
|
2014-05-02 12:03:24 +04:00
|
|
|
if (prop == "CMAKE_CXX_KNOWN_FEATURES")
|
|
|
|
{
|
|
|
|
return FOR_EACH_CXX_FEATURE(STRING_LIST_ELEMENT) + 1;
|
|
|
|
}
|
2013-11-04 04:15:43 +04:00
|
|
|
#undef STRING_LIST_ELEMENT
|
2006-12-07 17:45:32 +03:00
|
|
|
return this->Properties.GetPropertyValue(prop, scope, chain);
|
|
|
|
}
|
|
|
|
|
2013-09-03 00:27:32 +04:00
|
|
|
bool cmake::GetPropertyAsBool(const std::string& prop)
|
2006-12-07 17:45:32 +03:00
|
|
|
{
|
|
|
|
return cmSystemTools::IsOn(this->GetProperty(prop));
|
|
|
|
}
|
2007-02-27 18:10:10 +03:00
|
|
|
|
2014-05-15 21:12:40 +04:00
|
|
|
cmInstalledFile *cmake::GetOrCreateInstalledFile(
|
|
|
|
cmMakefile* mf, const std::string& name)
|
|
|
|
{
|
|
|
|
std::map<std::string, cmInstalledFile>::iterator i =
|
|
|
|
this->InstalledFiles.find(name);
|
|
|
|
|
|
|
|
if(i != this->InstalledFiles.end())
|
|
|
|
{
|
|
|
|
cmInstalledFile &file = i->second;
|
|
|
|
return &file;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmInstalledFile &file = this->InstalledFiles[name];
|
|
|
|
file.SetName(mf, name);
|
|
|
|
return &file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cmInstalledFile const* cmake::GetInstalledFile(const std::string& name) const
|
|
|
|
{
|
|
|
|
std::map<std::string, cmInstalledFile>::const_iterator i =
|
|
|
|
this->InstalledFiles.find(name);
|
|
|
|
|
|
|
|
if(i != this->InstalledFiles.end())
|
|
|
|
{
|
|
|
|
cmInstalledFile const& file = i->second;
|
|
|
|
return &file;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-27 18:10:10 +03:00
|
|
|
int cmake::GetSystemInformation(std::vector<std::string>& args)
|
|
|
|
{
|
|
|
|
// so create the directory
|
2007-02-28 20:25:19 +03:00
|
|
|
std::string resultFile;
|
2007-02-27 18:10:10 +03:00
|
|
|
std::string cwd = cmSystemTools::GetCurrentWorkingDirectory();
|
|
|
|
std::string destPath = cwd + "/__cmake_systeminformation";
|
|
|
|
cmSystemTools::RemoveADirectory(destPath.c_str());
|
|
|
|
if (!cmSystemTools::MakeDirectory(destPath.c_str()))
|
|
|
|
{
|
|
|
|
std::cerr << "Error: --system-information must be run from a "
|
|
|
|
"writable directory!\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2007-02-28 20:25:19 +03:00
|
|
|
|
|
|
|
// process the arguments
|
2007-03-01 18:53:09 +03:00
|
|
|
bool writeToStdout = true;
|
2007-02-28 20:25:19 +03:00
|
|
|
for(unsigned int i=1; i < args.size(); ++i)
|
|
|
|
{
|
|
|
|
std::string arg = args[i];
|
|
|
|
if(arg.find("-V",0) == 0)
|
|
|
|
{
|
|
|
|
this->Verbose = true;
|
|
|
|
}
|
|
|
|
else if(arg.find("-G",0) == 0)
|
|
|
|
{
|
|
|
|
std::string value = arg.substr(2);
|
|
|
|
if(value.size() == 0)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if(i >= args.size())
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("No generator specified for -G");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
value = args[i];
|
|
|
|
}
|
|
|
|
cmGlobalGenerator* gen =
|
2014-03-11 03:04:11 +04:00
|
|
|
this->CreateGlobalGenerator(value);
|
2007-02-28 20:25:19 +03:00
|
|
|
if(!gen)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Could not create named generator ",
|
|
|
|
value.c_str());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetGlobalGenerator(gen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// no option assume it is the output file
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!cmSystemTools::FileIsFullPath(arg.c_str()))
|
|
|
|
{
|
2007-03-01 18:53:09 +03:00
|
|
|
resultFile = cwd;
|
2007-02-28 20:25:19 +03:00
|
|
|
resultFile += "/";
|
|
|
|
}
|
2007-03-01 18:53:09 +03:00
|
|
|
resultFile += arg;
|
|
|
|
writeToStdout = false;
|
2007-02-28 20:25:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-27 18:10:10 +03:00
|
|
|
// we have to find the module directory, so we can copy the files
|
2007-12-14 01:56:50 +03:00
|
|
|
this->AddCMakePaths();
|
2010-10-31 16:46:09 +03:00
|
|
|
std::string modulesPath =
|
2007-02-27 18:10:10 +03:00
|
|
|
this->CacheManager->GetCacheValue("CMAKE_ROOT");
|
|
|
|
modulesPath += "/Modules";
|
|
|
|
std::string inFile = modulesPath;
|
|
|
|
inFile += "/SystemInformation.cmake";
|
|
|
|
std::string outFile = destPath;
|
|
|
|
outFile += "/CMakeLists.txt";
|
2010-10-31 16:46:09 +03:00
|
|
|
|
2007-02-27 18:10:10 +03:00
|
|
|
// Copy file
|
|
|
|
if(!cmSystemTools::cmCopyFile(inFile.c_str(), outFile.c_str()))
|
|
|
|
{
|
2014-03-11 16:35:32 +04:00
|
|
|
std::cerr << "Error copying file \"" << inFile
|
|
|
|
<< "\" to \"" << outFile << "\".\n";
|
2007-02-27 18:10:10 +03:00
|
|
|
return 1;
|
|
|
|
}
|
2010-10-31 16:46:09 +03:00
|
|
|
|
2007-02-27 18:10:10 +03:00
|
|
|
// do we write to a file or to stdout?
|
2007-02-28 20:25:19 +03:00
|
|
|
if (resultFile.size() == 0)
|
2007-02-27 18:10:10 +03:00
|
|
|
{
|
|
|
|
resultFile = cwd;
|
2007-02-28 00:41:43 +03:00
|
|
|
resultFile += "/__cmake_systeminformation/results.txt";
|
2007-02-27 18:10:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// now run cmake on the CMakeLists file
|
|
|
|
cmSystemTools::ChangeDirectory(destPath.c_str());
|
|
|
|
std::vector<std::string> args2;
|
|
|
|
args2.push_back(args[0]);
|
|
|
|
args2.push_back(destPath);
|
|
|
|
std::string resultArg = "-DRESULT_FILE=";
|
|
|
|
resultArg += resultFile;
|
|
|
|
args2.push_back(resultArg);
|
2007-03-01 18:53:09 +03:00
|
|
|
int res = this->Run(args2, false);
|
2007-02-27 20:47:14 +03:00
|
|
|
|
|
|
|
if (res != 0)
|
|
|
|
{
|
|
|
|
std::cerr << "Error: --system-information failed on internal CMake!\n";
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2007-02-27 18:10:10 +03:00
|
|
|
// change back to the original directory
|
|
|
|
cmSystemTools::ChangeDirectory(cwd.c_str());
|
2010-10-31 16:46:09 +03:00
|
|
|
|
2007-02-27 18:10:10 +03:00
|
|
|
// echo results to stdout if needed
|
2007-03-01 18:53:09 +03:00
|
|
|
if (writeToStdout)
|
2007-02-27 18:10:10 +03:00
|
|
|
{
|
2014-01-04 09:47:13 +04:00
|
|
|
FILE* fin = cmsys::SystemTools::Fopen(resultFile.c_str(), "r");
|
2007-02-27 18:10:10 +03:00
|
|
|
if(fin)
|
|
|
|
{
|
|
|
|
const int bufferSize = 4096;
|
|
|
|
char buffer[bufferSize];
|
2007-03-02 18:49:32 +03:00
|
|
|
size_t n;
|
2007-02-27 18:10:10 +03:00
|
|
|
while((n = fread(buffer, 1, bufferSize, fin)) > 0)
|
|
|
|
{
|
|
|
|
for(char* c = buffer; c < buffer+n; ++c)
|
|
|
|
{
|
|
|
|
putc(*c, stdout);
|
|
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
fclose(fin);
|
|
|
|
}
|
|
|
|
}
|
2010-10-31 16:46:09 +03:00
|
|
|
|
2007-02-27 18:10:10 +03:00
|
|
|
// clean up the directory
|
|
|
|
cmSystemTools::RemoveADirectory(destPath.c_str());
|
|
|
|
return 0;
|
|
|
|
}
|
2007-11-10 16:15:13 +03:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
static bool cmakeCheckStampFile(const char* stampName)
|
|
|
|
{
|
|
|
|
// The stamp file does not exist. Use the stamp dependencies to
|
|
|
|
// determine whether it is really out of date. This works in
|
|
|
|
// conjunction with cmLocalVisualStudio7Generator to avoid
|
|
|
|
// repeatedly re-running CMake when the user rebuilds the entire
|
|
|
|
// solution.
|
|
|
|
std::string stampDepends = stampName;
|
|
|
|
stampDepends += ".depend";
|
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream fin(stampDepends.c_str(), std::ios::in | std::ios::binary);
|
2007-11-10 16:15:13 +03:00
|
|
|
#else
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream fin(stampDepends.c_str(), std::ios::in);
|
2007-11-10 16:15:13 +03:00
|
|
|
#endif
|
|
|
|
if(!fin)
|
|
|
|
{
|
|
|
|
// The stamp dependencies file cannot be read. Just assume the
|
|
|
|
// build system is really out of date.
|
2008-06-08 19:41:24 +04:00
|
|
|
std::cout << "CMake is re-running because " << stampName
|
|
|
|
<< " dependency file is missing.\n";
|
2007-11-10 16:15:13 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compare the stamp dependencies against the dependency file itself.
|
|
|
|
cmFileTimeComparison ftc;
|
|
|
|
std::string dep;
|
|
|
|
while(cmSystemTools::GetLineFromStream(fin, dep))
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
if(dep.length() >= 1 && dep[0] != '#' &&
|
|
|
|
(!ftc.FileTimeCompare(stampDepends.c_str(), dep.c_str(), &result)
|
|
|
|
|| result < 0))
|
|
|
|
{
|
|
|
|
// The stamp depends file is older than this dependency. The
|
|
|
|
// build system is really out of date.
|
2008-06-08 19:41:24 +04:00
|
|
|
std::cout << "CMake is re-running because " << stampName
|
|
|
|
<< " is out-of-date.\n";
|
2010-06-21 19:47:16 +04:00
|
|
|
std::cout << " the file '" << dep << "'\n";
|
|
|
|
std::cout << " is newer than '" << stampDepends << "'\n";
|
|
|
|
std::cout << " result='" << result << "'\n";
|
2007-11-10 16:15:13 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The build system is up to date. The stamp file has been removed
|
2013-02-12 19:46:22 +04:00
|
|
|
// by the VS IDE due to a "rebuild" request. Restore it atomically.
|
|
|
|
cmOStringStream stampTempStream;
|
|
|
|
stampTempStream << stampName << ".tmp" << cmSystemTools::RandomSeed();
|
|
|
|
std::string stampTempString = stampTempStream.str();
|
|
|
|
const char* stampTemp = stampTempString.c_str();
|
|
|
|
{
|
|
|
|
// TODO: Teach cmGeneratedFileStream to use a random temp file (with
|
|
|
|
// multiple tries in unlikely case of conflict) and use that here.
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ofstream stamp(stampTemp);
|
2013-05-01 12:30:46 +04:00
|
|
|
stamp << "# CMake generation timestamp file for this directory.\n";
|
2013-02-12 19:46:22 +04:00
|
|
|
}
|
|
|
|
if(cmSystemTools::RenameFile(stampTemp, stampName))
|
2007-11-10 16:15:13 +03:00
|
|
|
{
|
|
|
|
// Notify the user why CMake is not re-running. It is safe to
|
|
|
|
// just print to stdout here because this code is only reachable
|
|
|
|
// through an undocumented flag used by the VS generator.
|
2008-03-12 00:25:49 +03:00
|
|
|
std::cout << "CMake does not need to re-run because "
|
|
|
|
<< stampName << " is up-to-date.\n";
|
2007-11-10 16:15:13 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-02-12 19:46:22 +04:00
|
|
|
cmSystemTools::RemoveFile(stampTemp);
|
2007-11-10 16:15:13 +03:00
|
|
|
cmSystemTools::Error("Cannot restore timestamp ", stampName);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2008-01-01 23:13:41 +03:00
|
|
|
|
2008-03-12 00:25:49 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
static bool cmakeCheckStampList(const char* stampList)
|
|
|
|
{
|
|
|
|
// If the stamp list does not exist CMake must rerun to generate it.
|
|
|
|
if(!cmSystemTools::FileExists(stampList))
|
|
|
|
{
|
|
|
|
std::cout << "CMake is re-running because generate.stamp.list "
|
|
|
|
<< "is missing.\n";
|
|
|
|
return false;
|
|
|
|
}
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ifstream fin(stampList);
|
2008-03-12 00:25:49 +03:00
|
|
|
if(!fin)
|
|
|
|
{
|
|
|
|
std::cout << "CMake is re-running because generate.stamp.list "
|
|
|
|
<< "could not be read.\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check each stamp.
|
|
|
|
std::string stampName;
|
|
|
|
while(cmSystemTools::GetLineFromStream(fin, stampName))
|
|
|
|
{
|
|
|
|
if(!cmakeCheckStampFile(stampName.c_str()))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-03-13 20:48:57 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmake::IssueMessage(cmake::MessageType t, std::string const& text,
|
|
|
|
cmListFileBacktrace const& backtrace)
|
|
|
|
{
|
|
|
|
cmOStringStream msg;
|
|
|
|
bool isError = false;
|
|
|
|
// Construct the message header.
|
|
|
|
if(t == cmake::FATAL_ERROR)
|
|
|
|
{
|
|
|
|
isError = true;
|
|
|
|
msg << "CMake Error";
|
|
|
|
}
|
|
|
|
else if(t == cmake::INTERNAL_ERROR)
|
|
|
|
{
|
|
|
|
isError = true;
|
|
|
|
msg << "CMake Internal Error (please report a bug)";
|
|
|
|
}
|
2013-01-20 16:07:31 +04:00
|
|
|
else if(t == cmake::LOG)
|
|
|
|
{
|
|
|
|
msg << "CMake Debug Log";
|
|
|
|
}
|
2013-09-17 20:54:34 +04:00
|
|
|
else if(t == cmake::DEPRECATION_ERROR)
|
|
|
|
{
|
|
|
|
msg << "CMake Deprecation Error";
|
|
|
|
isError = true;
|
|
|
|
}
|
|
|
|
else if (t == cmake::DEPRECATION_WARNING)
|
|
|
|
{
|
|
|
|
msg << "CMake Deprecation Warning";
|
|
|
|
}
|
2008-03-13 20:48:57 +03:00
|
|
|
else
|
|
|
|
{
|
|
|
|
msg << "CMake Warning";
|
|
|
|
if(t == cmake::AUTHOR_WARNING)
|
|
|
|
{
|
|
|
|
// Allow suppression of these warnings.
|
|
|
|
cmCacheManager::CacheIterator it = this->CacheManager
|
|
|
|
->GetCacheIterator("CMAKE_SUPPRESS_DEVELOPER_WARNINGS");
|
|
|
|
if(!it.IsAtEnd() && it.GetValueAsBool())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
msg << " (dev)";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the immediate context.
|
|
|
|
cmListFileBacktrace::const_iterator i = backtrace.begin();
|
|
|
|
if(i != backtrace.end())
|
|
|
|
{
|
|
|
|
cmListFileContext const& lfc = *i;
|
|
|
|
msg << (lfc.Line? " at ": " in ") << lfc;
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the message text.
|
|
|
|
{
|
|
|
|
msg << ":\n";
|
2013-09-14 00:09:52 +04:00
|
|
|
cmDocumentationFormatter formatter;
|
2008-03-13 20:48:57 +03:00
|
|
|
formatter.SetIndent(" ");
|
|
|
|
formatter.PrintFormatted(msg, text.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the rest of the context.
|
|
|
|
if(i != backtrace.end())
|
|
|
|
{
|
|
|
|
msg << "Call Stack (most recent call first):\n";
|
|
|
|
while(i != backtrace.end())
|
|
|
|
{
|
|
|
|
cmListFileContext const& lfc = *i;
|
|
|
|
msg << " " << lfc << "\n";
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-13 22:06:35 +03:00
|
|
|
// Add a note about warning suppression.
|
|
|
|
if(t == cmake::AUTHOR_WARNING)
|
|
|
|
{
|
2008-03-20 17:11:52 +03:00
|
|
|
msg <<
|
|
|
|
"This warning is for project developers. Use -Wno-dev to suppress it.";
|
2008-03-13 22:06:35 +03:00
|
|
|
}
|
|
|
|
|
2008-03-13 20:48:57 +03:00
|
|
|
// Add a terminating blank line.
|
|
|
|
msg << "\n";
|
|
|
|
|
2014-04-17 19:20:13 +04:00
|
|
|
#if defined(CMAKE_BUILD_WITH_CMAKE)
|
|
|
|
// Add a C++ stack trace to internal errors.
|
|
|
|
if(t == cmake::INTERNAL_ERROR)
|
|
|
|
{
|
|
|
|
std::string stack = cmsys::SystemInformation::GetProgramStack(0,0);
|
|
|
|
if(!stack.empty())
|
|
|
|
{
|
|
|
|
if(cmHasLiteralPrefix(stack, "WARNING:"))
|
|
|
|
{
|
|
|
|
stack = "Note:" + stack.substr(8);
|
|
|
|
}
|
|
|
|
msg << stack << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-03-13 20:48:57 +03:00
|
|
|
// Output the message.
|
|
|
|
if(isError)
|
|
|
|
{
|
|
|
|
cmSystemTools::SetErrorOccured();
|
|
|
|
cmSystemTools::Message(msg.str().c_str(), "Error");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cmSystemTools::Message(msg.str().c_str(), "Warning");
|
|
|
|
}
|
|
|
|
}
|
2008-09-05 01:34:25 +04:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::vector<std::string> const& cmake::GetDebugConfigs()
|
|
|
|
{
|
|
|
|
// Compute on-demand.
|
|
|
|
if(this->DebugConfigs.empty())
|
|
|
|
{
|
|
|
|
if(const char* config_list = this->GetProperty("DEBUG_CONFIGURATIONS"))
|
|
|
|
{
|
|
|
|
// Expand the specified list and convert to upper-case.
|
|
|
|
cmSystemTools::ExpandListArgument(config_list, this->DebugConfigs);
|
|
|
|
for(std::vector<std::string>::iterator i = this->DebugConfigs.begin();
|
|
|
|
i != this->DebugConfigs.end(); ++i)
|
|
|
|
{
|
|
|
|
*i = cmSystemTools::UpperCase(*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If no configurations were specified, use a default list.
|
|
|
|
if(this->DebugConfigs.empty())
|
|
|
|
{
|
|
|
|
this->DebugConfigs.push_back("DEBUG");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this->DebugConfigs;
|
|
|
|
}
|
2008-10-15 21:56:07 +04:00
|
|
|
|
|
|
|
|
|
|
|
int cmake::Build(const std::string& dir,
|
|
|
|
const std::string& target,
|
|
|
|
const std::string& config,
|
2009-03-04 23:39:27 +03:00
|
|
|
const std::vector<std::string>& nativeOptions,
|
2013-10-18 21:38:36 +04:00
|
|
|
bool clean)
|
2009-12-28 21:44:38 +03:00
|
|
|
{
|
2008-10-15 21:56:07 +04:00
|
|
|
if(!cmSystemTools::FileIsDirectory(dir.c_str()))
|
|
|
|
{
|
|
|
|
std::cerr << "Error: " << dir << " is not a directory\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
std::string cachePath = dir;
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(cachePath);
|
|
|
|
cmCacheManager* cachem = this->GetCacheManager();
|
|
|
|
cmCacheManager::CacheIterator it = cachem->NewIterator();
|
2014-03-11 03:04:11 +04:00
|
|
|
if(!cachem->LoadCache(cachePath))
|
2008-10-15 21:56:07 +04:00
|
|
|
{
|
|
|
|
std::cerr << "Error: could not load cache\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if(!it.Find("CMAKE_GENERATOR"))
|
|
|
|
{
|
2014-06-03 19:36:25 +04:00
|
|
|
std::cerr << "Error: could not find CMAKE_GENERATOR in Cache\n";
|
2008-10-15 21:56:07 +04:00
|
|
|
return 1;
|
|
|
|
}
|
2012-11-21 03:56:36 +04:00
|
|
|
cmsys::auto_ptr<cmGlobalGenerator> gen(
|
2009-12-28 21:44:38 +03:00
|
|
|
this->CreateGlobalGenerator(it.GetValue()));
|
2014-06-03 19:36:25 +04:00
|
|
|
if(!gen.get())
|
|
|
|
{
|
|
|
|
std::cerr << "Error: could create CMAKE_GENERATOR \""
|
|
|
|
<< it.GetValue() << "\"\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2008-10-15 21:56:07 +04:00
|
|
|
std::string output;
|
|
|
|
std::string projName;
|
|
|
|
if(!it.Find("CMAKE_PROJECT_NAME"))
|
|
|
|
{
|
|
|
|
std::cerr << "Error: could not find CMAKE_PROJECT_NAME in Cache\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
projName = it.GetValue();
|
2014-03-11 03:04:11 +04:00
|
|
|
return gen->Build("", dir,
|
|
|
|
projName, target,
|
2010-10-31 16:46:09 +03:00
|
|
|
&output,
|
2014-02-25 02:38:55 +04:00
|
|
|
"",
|
2014-03-11 03:04:11 +04:00
|
|
|
config, clean, false, 0,
|
2013-10-18 21:38:36 +04:00
|
|
|
cmSystemTools::OUTPUT_PASSTHROUGH,
|
2013-11-15 22:33:32 +04:00
|
|
|
nativeOptions);
|
2008-10-15 21:56:07 +04:00
|
|
|
}
|
2010-09-02 19:29:05 +04:00
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
void cmake::WatchUnusedCli(const std::string& var)
|
2010-09-22 20:42:49 +04:00
|
|
|
{
|
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
|
|
|
this->VariableWatch->AddWatch(var, cmWarnUnusedCliWarning, this);
|
2011-03-24 16:44:23 +03:00
|
|
|
if(this->UsedCliVariables.find(var) == this->UsedCliVariables.end())
|
|
|
|
{
|
|
|
|
this->UsedCliVariables[var] = false;
|
|
|
|
}
|
2010-09-22 20:42:49 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-02-05 01:06:56 +04:00
|
|
|
void cmake::UnwatchUnusedCli(const std::string& var)
|
2011-01-14 01:58:04 +03:00
|
|
|
{
|
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
|
|
|
this->VariableWatch->RemoveWatch(var, cmWarnUnusedCliWarning);
|
2011-03-24 16:44:23 +03:00
|
|
|
this->UsedCliVariables.erase(var);
|
2011-01-14 01:58:04 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-03-24 16:24:27 +03:00
|
|
|
void cmake::RunCheckForUnusedVariables()
|
2010-09-02 19:29:05 +04:00
|
|
|
{
|
|
|
|
#ifdef CMAKE_BUILD_WITH_CMAKE
|
2011-03-24 16:24:27 +03:00
|
|
|
bool haveUnused = false;
|
|
|
|
cmOStringStream msg;
|
|
|
|
msg << "Manually-specified variables were not used by the project:";
|
2014-02-10 09:21:34 +04:00
|
|
|
for(std::map<std::string, bool>::const_iterator
|
2011-03-24 16:24:27 +03:00
|
|
|
it = this->UsedCliVariables.begin();
|
|
|
|
it != this->UsedCliVariables.end(); ++it)
|
|
|
|
{
|
|
|
|
if(!it->second)
|
2010-09-02 19:29:05 +04:00
|
|
|
{
|
2011-03-24 16:24:27 +03:00
|
|
|
haveUnused = true;
|
|
|
|
msg << "\n " << it->first;
|
2010-09-02 19:29:05 +04:00
|
|
|
}
|
2011-03-24 16:24:27 +03:00
|
|
|
}
|
|
|
|
if(haveUnused)
|
|
|
|
{
|
|
|
|
this->IssueMessage(cmake::WARNING, msg.str(), cmListFileBacktrace());
|
|
|
|
}
|
2010-09-02 19:29:05 +04:00
|
|
|
#endif
|
|
|
|
}
|