2002-08-31 00:00:35 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2002-08-31 00:00:35 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2002-08-31 00:00:35 +04:00
|
|
|
|
2004-01-23 16:53:51 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
2002-08-31 00:00:35 +04:00
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmLocalGenerator.h"
|
2006-02-19 23:25:27 +03:00
|
|
|
|
|
|
|
#include "cmGeneratedFileStream.h"
|
2002-09-04 23:24:49 +04:00
|
|
|
#include "cmGlobalGenerator.h"
|
2006-02-19 23:25:27 +03:00
|
|
|
#include "cmInstallGenerator.h"
|
2006-02-20 02:47:13 +03:00
|
|
|
#include "cmInstallFilesGenerator.h"
|
2006-02-19 23:25:27 +03:00
|
|
|
#include "cmInstallScriptGenerator.h"
|
|
|
|
#include "cmInstallTargetGenerator.h"
|
2002-08-31 00:00:35 +04:00
|
|
|
#include "cmMakefile.h"
|
2005-02-24 21:16:41 +03:00
|
|
|
#include "cmOrderLinkDirectories.h"
|
2006-02-19 23:25:27 +03:00
|
|
|
#include "cmSourceFile.h"
|
2005-04-24 23:59:51 +04:00
|
|
|
#include "cmTest.h"
|
2006-02-19 23:25:27 +03:00
|
|
|
#include "cmake.h"
|
|
|
|
|
2005-04-12 23:11:54 +04:00
|
|
|
#include <ctype.h> // for isalpha
|
2002-08-31 00:00:35 +04:00
|
|
|
|
|
|
|
cmLocalGenerator::cmLocalGenerator()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile = new cmMakefile;
|
|
|
|
this->Makefile->SetLocalGenerator(this);
|
|
|
|
this->ExcludeFromAll = false;
|
|
|
|
this->Parent = 0;
|
|
|
|
this->WindowsShell = false;
|
|
|
|
this->IgnoreLibPrefix = false;
|
|
|
|
this->UseRelativePaths = false;
|
2005-03-18 18:41:41 +03:00
|
|
|
this->Configured = false;
|
2006-03-24 17:15:05 +03:00
|
|
|
this->EmitUniversalBinaryFlags = true;
|
2002-08-31 00:00:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmLocalGenerator::~cmLocalGenerator()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
delete this->Makefile;
|
2002-08-31 00:00:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalGenerator::Configure()
|
|
|
|
{
|
2005-07-29 17:19:25 +04:00
|
|
|
// make sure the CMakeFiles dir is there
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string filesDir = this->Makefile->GetStartOutputDirectory();
|
2005-07-29 17:19:25 +04:00
|
|
|
filesDir += "/CMakeFiles";
|
|
|
|
cmSystemTools::MakeDirectory(filesDir.c_str());
|
|
|
|
|
2002-08-31 00:00:35 +04:00
|
|
|
// find & read the list file
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string currentStart = this->Makefile->GetStartDirectory();
|
2002-08-31 00:00:35 +04:00
|
|
|
currentStart += "/CMakeLists.txt";
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->ReadListFile(currentStart.c_str());
|
2005-02-25 00:04:54 +03:00
|
|
|
|
2005-03-18 18:41:41 +03:00
|
|
|
// at the end of the ReadListFile handle any old style subdirs
|
|
|
|
// first get all the subdirectories
|
|
|
|
std::vector<cmLocalGenerator *> subdirs = this->GetChildren();
|
|
|
|
|
|
|
|
// for each subdir recurse
|
|
|
|
std::vector<cmLocalGenerator *>::iterator sdi = subdirs.begin();
|
|
|
|
for (; sdi != subdirs.end(); ++sdi)
|
|
|
|
{
|
|
|
|
if (!(*sdi)->Configured)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->ConfigureSubDirectory(*sdi);
|
2005-03-18 18:41:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
this->SetupPathConversions();
|
|
|
|
|
|
|
|
// Check whether relative paths should be used for optionally
|
|
|
|
// relative paths.
|
2006-03-15 19:02:08 +03:00
|
|
|
this->UseRelativePaths = this->Makefile->IsOn("CMAKE_USE_RELATIVE_PATHS");
|
2005-07-27 17:49:37 +04:00
|
|
|
|
|
|
|
this->Configured = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalGenerator::SetupPathConversions()
|
|
|
|
{
|
2005-02-25 00:04:54 +03:00
|
|
|
// Setup the current output directory components for use by
|
2005-05-13 17:54:30 +04:00
|
|
|
// Convert
|
|
|
|
std::string outdir;
|
|
|
|
outdir =
|
2006-03-15 19:02:08 +03:00
|
|
|
cmSystemTools::CollapseFullPath(this->Makefile->GetHomeDirectory());
|
|
|
|
cmSystemTools::SplitPath(outdir.c_str(), this->HomeDirectoryComponents);
|
2005-05-13 17:54:30 +04:00
|
|
|
outdir =
|
2006-03-15 19:02:08 +03:00
|
|
|
cmSystemTools::CollapseFullPath(this->Makefile->GetStartDirectory());
|
|
|
|
cmSystemTools::SplitPath(outdir.c_str(), this->StartDirectoryComponents);
|
2005-05-13 17:54:30 +04:00
|
|
|
outdir =
|
2006-03-15 19:02:08 +03:00
|
|
|
cmSystemTools::CollapseFullPath(this->Makefile->GetHomeOutputDirectory());
|
|
|
|
cmSystemTools::SplitPath(outdir.c_str(), this->HomeOutputDirectoryComponents);
|
2005-05-13 17:54:30 +04:00
|
|
|
outdir =
|
2006-03-15 19:02:08 +03:00
|
|
|
cmSystemTools::CollapseFullPath(this->Makefile->GetStartOutputDirectory());
|
|
|
|
cmSystemTools::SplitPath(outdir.c_str(), this->StartOutputDirectoryComponents);
|
2002-08-31 00:00:35 +04:00
|
|
|
}
|
2002-09-04 23:24:49 +04:00
|
|
|
|
2005-07-27 17:49:37 +04:00
|
|
|
|
2002-09-04 23:24:49 +04:00
|
|
|
void cmLocalGenerator::SetGlobalGenerator(cmGlobalGenerator *gg)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GlobalGenerator = gg;
|
2002-09-04 23:24:49 +04:00
|
|
|
|
|
|
|
// setup the home directories
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->SetHomeDirectory(
|
2002-09-04 23:24:49 +04:00
|
|
|
gg->GetCMakeInstance()->GetHomeDirectory());
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->SetHomeOutputDirectory(
|
2002-09-04 23:24:49 +04:00
|
|
|
gg->GetCMakeInstance()->GetHomeOutputDirectory());
|
2002-09-10 23:37:52 +04:00
|
|
|
}
|
2002-09-15 16:54:16 +04:00
|
|
|
|
|
|
|
void cmLocalGenerator::ConfigureFinalPass()
|
2004-01-23 16:53:51 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->ConfigureFinalPass();
|
2002-09-15 16:54:16 +04:00
|
|
|
}
|
2003-12-22 23:16:46 +03:00
|
|
|
|
2005-04-24 23:59:51 +04:00
|
|
|
void cmLocalGenerator::GenerateTestFiles()
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
if ( !this->Makefile->IsOn("CMAKE_TESTING_ENABLED") )
|
2005-04-24 23:59:51 +04:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string file = this->Makefile->GetStartOutputDirectory();
|
2005-04-24 23:59:51 +04:00
|
|
|
file += "/";
|
2006-03-15 19:02:08 +03:00
|
|
|
if ( this->Makefile->IsSet("CTEST_NEW_FORMAT") )
|
2005-04-24 23:59:51 +04:00
|
|
|
{
|
|
|
|
file += "CTestTestfile.cmake";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
file += "DartTestfile.txt";
|
|
|
|
}
|
|
|
|
cmGeneratedFileStream fout(file.c_str());
|
|
|
|
fout.SetCopyIfDifferent(true);
|
|
|
|
|
|
|
|
fout << "# CMake generated Testfile for " << std::endl
|
2006-03-15 19:02:08 +03:00
|
|
|
<< "# Source directory: " << this->Makefile->GetStartDirectory() << std::endl
|
|
|
|
<< "# Build directory: " << this->Makefile->GetStartOutputDirectory() << std::endl
|
2005-04-24 23:59:51 +04:00
|
|
|
<< "# " << std::endl
|
|
|
|
<< "# This file replicates the SUBDIRS() and ADD_TEST() commands from the source" << std::endl
|
|
|
|
<< "# tree CMakeLists.txt file, skipping any SUBDIRS() or ADD_TEST() commands" << std::endl
|
|
|
|
<< "# that are excluded by CMake control structures, i.e. IF() commands." << std::endl
|
|
|
|
<< "#" << std::endl
|
|
|
|
<< "# The next line is critical for Dart to work" << std::endl
|
|
|
|
<< "# Duh :-)" << std::endl << std::endl;
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* testIncludeFile = this->Makefile->GetProperty("TEST_INCLUDE_FILE");
|
2005-06-07 17:57:05 +04:00
|
|
|
if ( testIncludeFile )
|
|
|
|
{
|
|
|
|
fout << "INCLUDE(\"" << testIncludeFile << "\")" << std::endl;
|
|
|
|
}
|
2005-04-24 23:59:51 +04:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
const std::vector<cmTest*> *tests = this->Makefile->GetTests();
|
2005-04-24 23:59:51 +04:00
|
|
|
std::vector<cmTest*>::const_iterator it;
|
|
|
|
for ( it = tests->begin(); it != tests->end(); ++ it )
|
|
|
|
{
|
|
|
|
cmTest* test = *it;
|
|
|
|
fout << "ADD_TEST(";
|
|
|
|
fout << test->GetName() << " \"" << test->GetCommand() << "\"";
|
|
|
|
|
2005-07-31 19:51:42 +04:00
|
|
|
std::vector<cmStdString>::const_iterator argit;
|
2005-04-25 17:59:59 +04:00
|
|
|
for (argit = test->GetArguments().begin();
|
|
|
|
argit != test->GetArguments().end(); ++argit)
|
2005-04-24 23:59:51 +04:00
|
|
|
{
|
|
|
|
// Just double-quote all arguments so they are re-parsed
|
|
|
|
// correctly by the test system.
|
|
|
|
fout << " \"";
|
2005-07-31 19:51:42 +04:00
|
|
|
for(std::string::const_iterator c = argit->begin(); c != argit->end(); ++c)
|
2005-04-24 23:59:51 +04:00
|
|
|
{
|
|
|
|
// Escape quotes within arguments. We should escape
|
|
|
|
// backslashes too but we cannot because it makes the result
|
|
|
|
// inconsistent with previous behavior of this command.
|
|
|
|
if((*c == '"'))
|
|
|
|
{
|
|
|
|
fout << '\\';
|
|
|
|
}
|
|
|
|
fout << *c;
|
|
|
|
}
|
|
|
|
fout << "\"";
|
|
|
|
}
|
|
|
|
fout << ")" << std::endl;
|
2005-09-07 07:31:41 +04:00
|
|
|
std::map<cmStdString,cmStdString>::const_iterator pit;
|
|
|
|
const std::map<cmStdString,cmStdString>* mpit = &test->GetProperties();
|
|
|
|
if ( mpit->size() )
|
|
|
|
{
|
|
|
|
fout << "SET_TESTS_PROPERTIES(" << test->GetName() << " PROPERTIES ";
|
|
|
|
for ( pit = mpit->begin(); pit != mpit->end(); ++ pit )
|
|
|
|
{
|
2005-11-09 01:59:20 +03:00
|
|
|
fout << " " << pit->first.c_str() << " \"";
|
|
|
|
const char* value = pit->second.c_str();
|
|
|
|
for ( ; *value; ++ value )
|
|
|
|
{
|
|
|
|
switch ( *value )
|
|
|
|
{
|
|
|
|
case '\\':
|
|
|
|
case '"':
|
|
|
|
case ' ':
|
|
|
|
case '#':
|
|
|
|
case '(':
|
|
|
|
case ')':
|
|
|
|
case '$':
|
|
|
|
case '^':
|
|
|
|
fout << "\\" << *value;
|
|
|
|
break;
|
|
|
|
case '\t':
|
|
|
|
fout << "\\t";
|
|
|
|
break;
|
|
|
|
case '\n':
|
|
|
|
fout << "\\n";
|
|
|
|
break;
|
|
|
|
case '\r':
|
|
|
|
fout << "\\r";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fout << *value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fout << "\"";
|
2005-09-07 07:31:41 +04:00
|
|
|
}
|
|
|
|
fout << ")" << std::endl;
|
|
|
|
}
|
2005-04-24 23:59:51 +04:00
|
|
|
}
|
|
|
|
if ( this->Children.size())
|
|
|
|
{
|
|
|
|
fout << "SUBDIRS(";
|
|
|
|
size_t i;
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string outDir = this->Makefile->GetStartOutputDirectory();
|
2005-04-24 23:59:51 +04:00
|
|
|
outDir += "/";
|
|
|
|
for(i = 0; i < this->Children.size(); ++i)
|
|
|
|
{
|
|
|
|
std::string binP = this->Children[i]->GetMakefile()->GetStartOutputDirectory();
|
|
|
|
cmSystemTools::ReplaceString(binP, outDir.c_str(), "");
|
|
|
|
if ( i > 0 )
|
|
|
|
{
|
|
|
|
fout << " ";
|
|
|
|
}
|
|
|
|
fout << binP.c_str();
|
|
|
|
}
|
|
|
|
fout << ")" << std::endl << std::endl;;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-19 23:25:27 +03:00
|
|
|
//----------------------------------------------------------------------------
|
2004-01-26 03:25:26 +03:00
|
|
|
void cmLocalGenerator::GenerateInstallRules()
|
|
|
|
{
|
2006-02-19 23:25:27 +03:00
|
|
|
// Compute the install prefix.
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* prefix = this->Makefile->GetDefinition("CMAKE_INSTALL_PREFIX");
|
2005-02-22 23:22:40 +03:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
|
|
std::string prefix_win32;
|
|
|
|
if(!prefix)
|
|
|
|
{
|
|
|
|
if(!cmSystemTools::GetEnv("SystemDrive", prefix_win32))
|
|
|
|
{
|
|
|
|
prefix_win32 = "C:";
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* project_name = this->Makefile->GetDefinition("PROJECT_NAME");
|
2005-02-22 23:22:40 +03:00
|
|
|
if(project_name && project_name[0])
|
|
|
|
{
|
|
|
|
prefix_win32 += "/Program Files/";
|
|
|
|
prefix_win32 += project_name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
prefix_win32 += "/InstalledCMakeProject";
|
|
|
|
}
|
|
|
|
prefix = prefix_win32.c_str();
|
|
|
|
}
|
|
|
|
#else
|
2004-01-26 03:25:26 +03:00
|
|
|
if (!prefix)
|
|
|
|
{
|
|
|
|
prefix = "/usr/local";
|
|
|
|
}
|
2005-02-22 23:22:40 +03:00
|
|
|
#endif
|
2004-01-26 03:25:26 +03:00
|
|
|
|
2006-02-19 23:25:27 +03:00
|
|
|
// Compute the set of configurations.
|
|
|
|
std::vector<std::string> configurationTypes;
|
2006-03-15 19:02:08 +03:00
|
|
|
if(const char* types = this->Makefile->GetDefinition("CMAKE_CONFIGURATION_TYPES"))
|
2006-02-19 23:25:27 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(types, configurationTypes);
|
|
|
|
}
|
|
|
|
const char* config = 0;
|
|
|
|
if(configurationTypes.empty())
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
config = this->Makefile->GetDefinition("CMAKE_BUILD_TYPE");
|
2006-02-19 23:25:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the install script file.
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string file = this->Makefile->GetStartOutputDirectory();
|
|
|
|
std::string homedir = this->Makefile->GetHomeOutputDirectory();
|
|
|
|
std::string currdir = this->Makefile->GetCurrentOutputDirectory();
|
2004-01-27 00:24:35 +03:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(file);
|
2004-03-29 02:59:46 +04:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(homedir);
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(currdir);
|
|
|
|
int toplevel_install = 0;
|
|
|
|
if ( currdir == homedir )
|
|
|
|
{
|
|
|
|
toplevel_install = 1;
|
|
|
|
}
|
2004-01-26 03:25:26 +03:00
|
|
|
file += "/cmake_install.cmake";
|
2004-11-03 15:51:51 +03:00
|
|
|
cmGeneratedFileStream fout(file.c_str());
|
|
|
|
fout.SetCopyIfDifferent(true);
|
2004-01-26 03:25:26 +03:00
|
|
|
|
2006-02-19 23:25:27 +03:00
|
|
|
// Write the header.
|
|
|
|
fout << "# Install script for directory: "
|
2006-03-15 19:02:08 +03:00
|
|
|
<< this->Makefile->GetCurrentDirectory() << std::endl << std::endl;
|
|
|
|
fout << "# Set the install prefix" << std::endl
|
2006-03-16 22:51:54 +03:00
|
|
|
<< "IF(NOT DEFINED CMAKE_INSTALL_PREFIX)" << std::endl
|
2005-12-10 20:11:20 +03:00
|
|
|
<< " SET(CMAKE_INSTALL_PREFIX \"" << prefix << "\")" << std::endl
|
2006-03-05 17:09:12 +03:00
|
|
|
<< "ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX)" << std::endl
|
|
|
|
<< "STRING(REGEX REPLACE \"/$\" \"\" CMAKE_INSTALL_PREFIX \"${CMAKE_INSTALL_PREFIX}\")" << std::endl
|
2005-12-10 20:11:20 +03:00
|
|
|
<< std::endl;
|
2004-01-26 03:25:26 +03:00
|
|
|
|
2006-02-19 23:25:27 +03:00
|
|
|
// Write support code for generating per-configuration install rules.
|
2006-01-14 02:18:32 +03:00
|
|
|
fout <<
|
|
|
|
"# Set the install configuration name.\n"
|
|
|
|
"IF(NOT CMAKE_INSTALL_CONFIG_NAME)\n"
|
|
|
|
" IF(BUILD_TYPE)\n"
|
|
|
|
" STRING(REGEX REPLACE \"^[^A-Za-z0-9_]+\" \"\"\n"
|
|
|
|
" CMAKE_INSTALL_CONFIG_NAME \"${BUILD_TYPE}\")\n"
|
|
|
|
" ELSE(BUILD_TYPE)\n"
|
|
|
|
" SET(CMAKE_INSTALL_CONFIG_NAME Release)\n"
|
|
|
|
" ENDIF(BUILD_TYPE)\n"
|
|
|
|
" MESSAGE(STATUS \"Install configuration: \\\"${CMAKE_INSTALL_CONFIG_NAME}\\\"\")\n"
|
|
|
|
"ENDIF(NOT CMAKE_INSTALL_CONFIG_NAME)\n"
|
|
|
|
"\n";
|
2004-02-03 18:53:41 +03:00
|
|
|
|
2006-03-30 22:33:48 +04:00
|
|
|
// Write support code for dealing with component-specific installs.
|
|
|
|
fout <<
|
|
|
|
"# Set the component getting installed.\n"
|
|
|
|
"IF(NOT CMAKE_INSTALL_COMPONENT)\n"
|
|
|
|
" IF(COMPONENT)\n"
|
|
|
|
" MESSAGE(STATUS \"Install component: \\\"${COMPONENT}\\\"\")\n"
|
|
|
|
" SET(CMAKE_INSTALL_COMPONENT \"${COMPONENT}\")\n"
|
|
|
|
" ELSE(COMPONENT)\n"
|
|
|
|
" SET(CMAKE_INSTALL_COMPONENT)\n"
|
|
|
|
" ENDIF(COMPONENT)\n"
|
|
|
|
"ENDIF(NOT CMAKE_INSTALL_COMPONENT)\n"
|
|
|
|
"\n";
|
|
|
|
|
2006-02-19 23:25:27 +03:00
|
|
|
// Ask each install generator to write its code.
|
|
|
|
std::vector<cmInstallGenerator*> const& installers =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetInstallGenerators();
|
2006-02-19 23:25:27 +03:00
|
|
|
for(std::vector<cmInstallGenerator*>::const_iterator gi = installers.begin();
|
|
|
|
gi != installers.end(); ++gi)
|
2004-01-26 03:25:26 +03:00
|
|
|
{
|
2006-02-19 23:25:27 +03:00
|
|
|
(*gi)->Generate(fout, config, configurationTypes);
|
2006-02-10 21:54:36 +03:00
|
|
|
}
|
|
|
|
|
2006-02-19 23:25:27 +03:00
|
|
|
// Write rules from old-style specification stored in targets.
|
|
|
|
this->GenerateTargetInstallRules(fout, config, configurationTypes);
|
2005-03-18 18:41:41 +03:00
|
|
|
|
2006-02-19 23:25:27 +03:00
|
|
|
// Include install scripts from subdirectories.
|
2005-03-18 18:41:41 +03:00
|
|
|
if ( this->Children.size())
|
2004-01-26 03:25:26 +03:00
|
|
|
{
|
2005-03-18 18:41:41 +03:00
|
|
|
std::vector<cmLocalGenerator*>::const_iterator i = this->Children.begin();
|
|
|
|
for(; i != this->Children.end(); ++i)
|
2004-01-26 03:25:26 +03:00
|
|
|
{
|
2005-03-18 18:41:41 +03:00
|
|
|
std::string odir = (*i)->GetMakefile()->GetStartOutputDirectory();
|
2004-01-27 00:24:35 +03:00
|
|
|
cmSystemTools::ConvertToUnixSlashes(odir);
|
2004-05-07 00:06:18 +04:00
|
|
|
fout << "INCLUDE(\"" << odir.c_str()
|
|
|
|
<< "/cmake_install.cmake\")" << std::endl;
|
2004-01-26 03:25:26 +03:00
|
|
|
}
|
|
|
|
fout << std::endl;;
|
|
|
|
}
|
2006-02-19 23:25:27 +03:00
|
|
|
|
|
|
|
// Record the install manifest.
|
2004-03-29 02:59:46 +04:00
|
|
|
if ( toplevel_install )
|
|
|
|
{
|
2006-03-30 22:33:48 +04:00
|
|
|
fout <<
|
|
|
|
"IF(CMAKE_INSTALL_COMPONENT)\n"
|
|
|
|
" SET(CMAKE_INSTALL_MANIFEST \"install_manifest_"
|
|
|
|
"${CMAKE_INSTALL_COMPONENT}.txt\")\n"
|
|
|
|
"ELSE(CMAKE_INSTALL_COMPONENT)\n"
|
|
|
|
" SET(CMAKE_INSTALL_MANIFEST \"install_manifest.txt\")\n"
|
|
|
|
"ENDIF(CMAKE_INSTALL_COMPONENT)\n";
|
|
|
|
fout
|
|
|
|
<< "FILE(WRITE \""
|
|
|
|
<< homedir.c_str() << "/${CMAKE_INSTALL_MANIFEST}\" "
|
|
|
|
<< "\"\")" << std::endl;
|
|
|
|
fout
|
|
|
|
<< "FOREACH(file ${CMAKE_INSTALL_MANIFEST_FILES})" << std::endl
|
|
|
|
<< " FILE(APPEND \""
|
|
|
|
<< homedir.c_str() << "/${CMAKE_INSTALL_MANIFEST}\" "
|
2004-03-29 02:59:46 +04:00
|
|
|
<< "\"${file}\\n\")" << std::endl
|
|
|
|
<< "ENDFOREACH(file)" << std::endl;
|
|
|
|
}
|
2004-01-26 03:25:26 +03:00
|
|
|
}
|
|
|
|
|
2006-04-04 19:48:19 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalGenerator::GenerateTargetManifest(cmTargetManifest& manifest)
|
|
|
|
{
|
|
|
|
// Collect the set of configuration types.
|
|
|
|
std::vector<std::string> configNames;
|
|
|
|
if(const char* configurationTypes =
|
|
|
|
this->Makefile->GetDefinition("CMAKE_CONFIGURATION_TYPES"))
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(configurationTypes, configNames);
|
|
|
|
}
|
|
|
|
else if(const char* buildType =
|
|
|
|
this->Makefile->GetDefinition("CMAKE_BUILD_TYPE"))
|
|
|
|
{
|
|
|
|
if(*buildType)
|
|
|
|
{
|
|
|
|
configNames.push_back(buildType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add our targets to the manifest for each configuration.
|
|
|
|
cmTargets& targets = this->Makefile->GetTargets();
|
|
|
|
for(cmTargets::iterator t = targets.begin(); t != targets.end(); ++t)
|
|
|
|
{
|
|
|
|
cmTarget& target = t->second;
|
|
|
|
cmTarget::TargetType type = target.GetType();
|
|
|
|
if(type == cmTarget::STATIC_LIBRARY ||
|
|
|
|
type == cmTarget::SHARED_LIBRARY ||
|
|
|
|
type == cmTarget::MODULE_LIBRARY ||
|
|
|
|
type == cmTarget::EXECUTABLE)
|
|
|
|
{
|
|
|
|
if(configNames.empty())
|
|
|
|
{
|
|
|
|
manifest[""].insert(target.GetFullPath(0, false));
|
|
|
|
if(type == cmTarget::SHARED_LIBRARY &&
|
|
|
|
this->Makefile->GetDefinition("CMAKE_IMPORT_LIBRARY_SUFFIX"))
|
|
|
|
{
|
|
|
|
manifest[""].insert(target.GetFullPath(0, true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for(std::vector<std::string>::iterator ci = configNames.begin();
|
|
|
|
ci != configNames.end(); ++ci)
|
|
|
|
{
|
|
|
|
const char* config = ci->c_str();
|
|
|
|
manifest[config].insert(target.GetFullPath(config, false));
|
|
|
|
if(type == cmTarget::SHARED_LIBRARY &&
|
|
|
|
this->Makefile->GetDefinition("CMAKE_IMPORT_LIBRARY_SUFFIX"))
|
|
|
|
{
|
|
|
|
manifest[config].insert(target.GetFullPath(config, true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-21 22:34:02 +04:00
|
|
|
void cmLocalGenerator::AddCustomCommandToCreateObject(const char* ofname,
|
|
|
|
const char* lang,
|
|
|
|
cmSourceFile& source,
|
2004-10-21 22:55:29 +04:00
|
|
|
cmTarget& )
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-05-13 17:54:30 +04:00
|
|
|
std::string objectFile = this->Convert(ofname,START_OUTPUT,SHELL);
|
|
|
|
std::string sourceFile =
|
|
|
|
this->Convert(source.GetFullPath().c_str(),START_OUTPUT,SHELL,true);
|
2004-10-21 22:34:02 +04:00
|
|
|
std::string varString = "CMAKE_";
|
|
|
|
varString += lang;
|
|
|
|
varString += "_COMPILE_OBJECT";
|
|
|
|
std::vector<std::string> rules;
|
2006-03-15 19:02:08 +03:00
|
|
|
rules.push_back(this->Makefile->GetRequiredDefinition(varString.c_str()));
|
2004-10-21 22:34:02 +04:00
|
|
|
varString = "CMAKE_";
|
|
|
|
varString += lang;
|
|
|
|
varString += "_FLAGS";
|
|
|
|
std::string flags;
|
2006-03-15 19:02:08 +03:00
|
|
|
flags += this->Makefile->GetSafeDefinition(varString.c_str());
|
2004-10-21 22:34:02 +04:00
|
|
|
flags += " ";
|
|
|
|
flags += this->GetIncludeFlags(lang);
|
|
|
|
std::vector<std::string> commands;
|
|
|
|
cmSystemTools::ExpandList(rules, commands);
|
2006-02-20 21:42:18 +03:00
|
|
|
cmLocalGenerator::RuleVariables vars;
|
|
|
|
vars.Language = lang;
|
|
|
|
vars.Source = sourceFile.c_str();
|
|
|
|
vars.Object = objectFile.c_str();
|
|
|
|
vars.Flags = flags.c_str();
|
2004-10-21 22:34:02 +04:00
|
|
|
for(std::vector<std::string>::iterator i = commands.begin();
|
|
|
|
i != commands.end(); ++i)
|
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
this->ExpandRuleVariables(*i, vars);
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
std::vector<std::string> sourceAndDeps;
|
|
|
|
sourceAndDeps.push_back(sourceFile);
|
|
|
|
if(commands.size() > 1)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("Currently custom rules can only have one command sorry ");
|
|
|
|
}
|
|
|
|
// Check for extra object-file dependencies.
|
|
|
|
std::vector<std::string> depends;
|
|
|
|
const char* additionalDeps = source.GetProperty("OBJECT_DEPENDS");
|
|
|
|
if(additionalDeps)
|
|
|
|
{
|
|
|
|
cmSystemTools::ExpandListArgument(additionalDeps, depends);
|
|
|
|
for(std::vector<std::string>::iterator i = depends.begin();
|
|
|
|
i != depends.end(); ++i)
|
|
|
|
{
|
2005-05-13 17:54:30 +04:00
|
|
|
sourceAndDeps.push_back(this->Convert(i->c_str(),START_OUTPUT,SHELL));
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
}
|
2005-02-22 18:32:44 +03:00
|
|
|
#if 0
|
2004-10-21 22:34:02 +04:00
|
|
|
std::string command;
|
|
|
|
std::string args;
|
|
|
|
cmSystemTools::SplitProgramFromArgs(commands[0].c_str(), command, args);
|
|
|
|
std::vector<std::string> argsv;
|
|
|
|
argsv.push_back(args);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddCustomCommandToOutput(ofname,
|
2004-10-21 22:34:02 +04:00
|
|
|
command.c_str(),
|
|
|
|
argsv,
|
|
|
|
source.GetFullPath().c_str(),
|
|
|
|
sourceAndDeps,
|
|
|
|
"build from source");
|
2005-02-22 18:32:44 +03:00
|
|
|
#endif
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalGenerator::AddBuildTargetRule(const char* llang, cmTarget& target)
|
|
|
|
{
|
|
|
|
cmStdString objs;
|
|
|
|
std::vector<std::string> objVector;
|
|
|
|
// Add all the sources outputs to the depends of the target
|
|
|
|
std::vector<cmSourceFile*>& classes = target.GetSourceFiles();
|
|
|
|
for(std::vector<cmSourceFile*>::iterator i = classes.begin();
|
|
|
|
i != classes.end(); ++i)
|
|
|
|
{
|
|
|
|
if(!(*i)->GetPropertyAsBool("HEADER_FILE_ONLY") &&
|
|
|
|
!(*i)->GetCustomCommand())
|
|
|
|
{
|
|
|
|
std::string outExt =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GlobalGenerator->GetLanguageOutputExtensionFromExtension(
|
2004-10-21 22:34:02 +04:00
|
|
|
(*i)->GetSourceExtension().c_str());
|
|
|
|
if(outExt.size() && !(*i)->GetPropertyAsBool("EXTERNAL_OBJECT") )
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string ofname = this->Makefile->GetCurrentOutputDirectory();
|
2004-10-21 22:34:02 +04:00
|
|
|
ofname += "/";
|
|
|
|
ofname += (*i)->GetSourceName() + outExt;
|
|
|
|
objVector.push_back(ofname);
|
|
|
|
this->AddCustomCommandToCreateObject(ofname.c_str(), llang, *(*i), target);
|
2005-05-13 17:54:30 +04:00
|
|
|
objs += this->Convert(ofname.c_str(),START_OUTPUT,MAKEFILE);
|
2004-10-21 22:34:02 +04:00
|
|
|
objs += " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::string createRule = "CMAKE_";
|
|
|
|
createRule += llang;
|
|
|
|
createRule += target.GetCreateRuleVariable();
|
2005-12-14 18:47:33 +03:00
|
|
|
std::string targetName = target.GetFullName();
|
2004-10-21 22:34:02 +04:00
|
|
|
// Executable :
|
|
|
|
// Shared Library:
|
|
|
|
// Static Library:
|
|
|
|
// Shared Module:
|
|
|
|
std::string linkLibs; // should be set
|
|
|
|
std::string flags; // should be set
|
|
|
|
std::string linkFlags; // should be set
|
|
|
|
this->GetTargetFlags(linkLibs, flags, linkFlags, target);
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string rule = this->Makefile->GetRequiredDefinition(createRule.c_str());
|
2006-02-20 21:42:18 +03:00
|
|
|
cmLocalGenerator::RuleVariables vars;
|
|
|
|
vars.Language = llang;
|
|
|
|
vars.Objects = objs.c_str();
|
|
|
|
vars.Target = targetName.c_str();
|
|
|
|
vars.LinkLibraries = linkLibs.c_str();
|
|
|
|
vars.Flags = flags.c_str();
|
|
|
|
vars.LinkFlags = linkFlags.c_str();
|
|
|
|
this->ExpandRuleVariables(rule, vars);
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2004-09-03 20:03:41 +04:00
|
|
|
|
2004-09-22 22:42:05 +04:00
|
|
|
|
2004-10-21 22:34:02 +04:00
|
|
|
void cmLocalGenerator::CreateCustomTargetsAndCommands(std::set<cmStdString> const& lang)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
cmTargets &tgts = this->Makefile->GetTargets();
|
2004-10-21 22:34:02 +04:00
|
|
|
for(cmTargets::iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); l++)
|
|
|
|
{
|
|
|
|
cmTarget& target = l->second;
|
|
|
|
switch(target.GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
{
|
|
|
|
const char* llang = target.GetLinkerLanguage(this->GetGlobalGenerator());
|
2004-10-27 18:53:01 +04:00
|
|
|
if(!llang)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("CMake can not determine linker language for target:",
|
|
|
|
target.GetName());
|
|
|
|
return;
|
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
// if the language is not in the set lang then create custom
|
|
|
|
// commands to build the target
|
|
|
|
if(lang.count(llang) == 0)
|
|
|
|
{
|
|
|
|
this->AddBuildTargetRule(llang, target);
|
|
|
|
}
|
|
|
|
}
|
2004-10-21 23:21:38 +04:00
|
|
|
break;
|
|
|
|
case cmTarget::UTILITY:
|
2006-02-24 18:56:39 +03:00
|
|
|
case cmTarget::GLOBAL_TARGET:
|
2004-10-21 23:21:38 +04:00
|
|
|
case cmTarget::INSTALL_FILES:
|
|
|
|
case cmTarget::INSTALL_PROGRAMS:
|
2006-03-29 01:25:29 +04:00
|
|
|
case cmTarget::INSTALL_DIRECTORY:
|
2004-10-21 22:34:02 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// List of variables that are replaced when
|
|
|
|
// rules are expanced. These variables are
|
|
|
|
// replaced in the form <var> with GetSafeDefinition(var).
|
|
|
|
// ${LANG} is replaced in the variable first with all enabled
|
|
|
|
// languages.
|
|
|
|
static const char* ruleReplaceVars[] =
|
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
"CMAKE_${LANG}_COMPILER",
|
2004-10-21 22:34:02 +04:00
|
|
|
"CMAKE_SHARED_LIBRARY_CREATE_${LANG}_FLAGS",
|
|
|
|
"CMAKE_SHARED_MODULE_CREATE_${LANG}_FLAGS",
|
|
|
|
"CMAKE_SHARED_MODULE_${LANG}_FLAGS",
|
|
|
|
"CMAKE_SHARED_LIBRARY_${LANG}_FLAGS",
|
|
|
|
"CMAKE_${LANG}_LINK_FLAGS",
|
|
|
|
"CMAKE_SHARED_LIBRARY_SONAME_${LANG}_FLAG",
|
|
|
|
"CMAKE_${LANG}_ARCHIVE",
|
|
|
|
"CMAKE_AR",
|
|
|
|
"CMAKE_CURRENT_SOURCE_DIR",
|
|
|
|
"CMAKE_CURRENT_BINARY_DIR",
|
|
|
|
"CMAKE_RANLIB",
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2005-04-12 21:27:07 +04:00
|
|
|
std::string
|
|
|
|
cmLocalGenerator::ExpandRuleVariable(std::string const& variable,
|
2006-02-20 21:42:18 +03:00
|
|
|
const RuleVariables& replaceValues)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
if(replaceValues.LinkFlags)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
if(variable == "LINK_FLAGS")
|
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
return replaceValues.LinkFlags;
|
2005-04-12 21:27:07 +04:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2006-02-20 21:42:18 +03:00
|
|
|
if(replaceValues.Flags)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
if(variable == "FLAGS")
|
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
return replaceValues.Flags;
|
2005-04-12 21:27:07 +04:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
|
2006-02-20 21:42:18 +03:00
|
|
|
if(replaceValues.Source)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
if(variable == "SOURCE")
|
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
return replaceValues.Source;
|
2005-04-12 21:27:07 +04:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2006-02-20 21:42:18 +03:00
|
|
|
if(replaceValues.Object)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
if(variable == "OBJECT")
|
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
return replaceValues.Object;
|
2005-04-12 21:27:07 +04:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2006-02-20 21:42:18 +03:00
|
|
|
if(replaceValues.Objects)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
if(variable == "OBJECTS")
|
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
return replaceValues.Objects;
|
2005-04-12 21:27:07 +04:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2006-02-20 21:42:18 +03:00
|
|
|
if(replaceValues.ObjectsQuoted)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
if(variable == "OBJECTS_QUOTED")
|
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
return replaceValues.ObjectsQuoted;
|
2005-04-12 21:27:07 +04:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2006-02-20 21:42:18 +03:00
|
|
|
if(replaceValues.Target)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
if(variable == "TARGET_QUOTED")
|
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
std::string targetQuoted = replaceValues.Target;
|
2005-04-12 21:27:07 +04:00
|
|
|
if(targetQuoted.size() && targetQuoted[0] != '\"')
|
|
|
|
{
|
|
|
|
targetQuoted = '\"';
|
2006-02-20 21:42:18 +03:00
|
|
|
targetQuoted += replaceValues.Target;
|
2005-04-12 21:27:07 +04:00
|
|
|
targetQuoted += '\"';
|
|
|
|
return targetQuoted;
|
|
|
|
}
|
|
|
|
}
|
2006-03-06 23:14:23 +03:00
|
|
|
if(variable == "LANGUAGE_COMPILE_FLAGS")
|
|
|
|
{
|
|
|
|
return replaceValues.LanguageCompileFlags;
|
|
|
|
}
|
2005-04-12 21:27:07 +04:00
|
|
|
if(variable == "TARGET")
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
return replaceValues.Target;
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2006-02-18 23:37:23 +03:00
|
|
|
if(variable == "TARGET_IMPLIB")
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->TargetImplib;
|
2006-02-18 23:37:23 +03:00
|
|
|
}
|
2006-01-14 02:18:32 +03:00
|
|
|
if(variable == "TARGET_BASE")
|
2005-04-12 21:27:07 +04:00
|
|
|
{
|
2006-01-14 02:18:32 +03:00
|
|
|
// Strip the last extension off the target name.
|
2006-02-20 21:42:18 +03:00
|
|
|
std::string targetBase = replaceValues.Target;
|
2006-01-14 02:18:32 +03:00
|
|
|
std::string::size_type pos = targetBase.rfind(".");
|
|
|
|
if(pos != targetBase.npos)
|
2005-04-12 21:27:07 +04:00
|
|
|
{
|
2006-01-14 02:18:32 +03:00
|
|
|
return targetBase.substr(0, pos);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return targetBase;
|
2005-04-12 21:27:07 +04:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
}
|
2006-02-20 21:42:18 +03:00
|
|
|
if(replaceValues.TargetSOName)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
if(variable == "TARGET_SONAME")
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
if(replaceValues.Language)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
std::string name = "CMAKE_SHARED_LIBRARY_SONAME_";
|
2006-02-20 21:42:18 +03:00
|
|
|
name += replaceValues.Language;
|
2005-04-12 21:27:07 +04:00
|
|
|
name += "_FLAG";
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Makefile->GetDefinition(name.c_str()))
|
2005-04-12 21:27:07 +04:00
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
return replaceValues.TargetSOName;
|
2005-04-12 21:27:07 +04:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2005-04-12 21:27:07 +04:00
|
|
|
return "";
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
}
|
2006-02-24 21:13:14 +03:00
|
|
|
if(replaceValues.TargetInstallNameDir)
|
|
|
|
{
|
|
|
|
if(variable == "TARGET_INSTALLNAME_DIR")
|
|
|
|
{
|
|
|
|
return replaceValues.TargetInstallNameDir;
|
|
|
|
}
|
|
|
|
}
|
2006-02-20 21:42:18 +03:00
|
|
|
if(replaceValues.LinkLibraries)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
if(variable == "LINK_LIBRARIES")
|
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
return replaceValues.LinkLibraries;
|
2005-04-12 21:27:07 +04:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2005-04-12 21:27:07 +04:00
|
|
|
std::vector<std::string> enabledLanguages;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GlobalGenerator->GetEnabledLanguages(enabledLanguages);
|
2004-10-21 22:34:02 +04:00
|
|
|
// loop over language specific replace variables
|
|
|
|
int pos = 0;
|
|
|
|
while(ruleReplaceVars[pos])
|
|
|
|
{
|
|
|
|
for(std::vector<std::string>::iterator i = enabledLanguages.begin();
|
|
|
|
i != enabledLanguages.end(); ++i)
|
|
|
|
{
|
2006-02-20 21:42:18 +03:00
|
|
|
const char* lang = i->c_str();
|
2005-04-12 21:27:07 +04:00
|
|
|
std::string actualReplace = ruleReplaceVars[pos];
|
2005-07-20 23:44:55 +04:00
|
|
|
// If this is the compiler then look for the extra variable
|
|
|
|
// _COMPILER_ARG1 which must be the first argument to the compiler
|
|
|
|
const char* compilerArg1 = 0;
|
|
|
|
if(actualReplace == "CMAKE_${LANG}_COMPILER")
|
|
|
|
{
|
|
|
|
std::string arg1 = actualReplace + "_ARG1";
|
|
|
|
cmSystemTools::ReplaceString(arg1, "${LANG}", lang);
|
2006-03-15 19:02:08 +03:00
|
|
|
compilerArg1 = this->Makefile->GetDefinition(arg1.c_str());
|
2005-07-20 23:44:55 +04:00
|
|
|
}
|
2005-04-12 21:27:07 +04:00
|
|
|
if(actualReplace.find("${LANG}") != actualReplace.npos)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2005-04-12 21:27:07 +04:00
|
|
|
cmSystemTools::ReplaceString(actualReplace, "${LANG}", lang);
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2005-04-12 21:27:07 +04:00
|
|
|
if(actualReplace == variable)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string replace = this->Makefile->GetSafeDefinition(variable.c_str());
|
2005-04-12 21:27:07 +04:00
|
|
|
// if the variable is not a FLAG then treat it like a path
|
|
|
|
if(variable.find("_FLAG") == variable.npos)
|
|
|
|
{
|
2005-07-20 23:44:55 +04:00
|
|
|
std::string ret = this->ConvertToOutputForExisting(replace.c_str());
|
|
|
|
// if there is a required first argument to the compiler add it to the compiler string
|
|
|
|
if(compilerArg1)
|
|
|
|
{
|
|
|
|
ret += " ";
|
|
|
|
ret += compilerArg1;
|
|
|
|
}
|
|
|
|
return ret;
|
2005-04-12 21:27:07 +04:00
|
|
|
}
|
|
|
|
return replace;
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pos++;
|
|
|
|
}
|
2005-04-12 21:27:07 +04:00
|
|
|
return variable;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
cmLocalGenerator::ExpandRuleVariables(std::string& s,
|
2006-02-20 21:42:18 +03:00
|
|
|
const RuleVariables& replaceValues)
|
2005-04-12 21:27:07 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> enabledLanguages;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->GlobalGenerator->GetEnabledLanguages(enabledLanguages);
|
2005-04-12 21:27:07 +04:00
|
|
|
std::string::size_type start = s.find('<');
|
|
|
|
// no variables to expand
|
|
|
|
if(start == s.npos)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
std::string::size_type pos = 0;
|
|
|
|
std::string expandedInput;
|
|
|
|
while(start != s.npos && start < s.size()-2)
|
|
|
|
{
|
|
|
|
std::string::size_type end = s.find('>', start);
|
|
|
|
// if we find a < with no > we are done
|
|
|
|
if(end == s.npos)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
char c = s[start+1];
|
|
|
|
// if the next char after the < is not A-Za-z then
|
|
|
|
// skip it and try to find the next < in the string
|
|
|
|
if(!isalpha(c))
|
|
|
|
{
|
|
|
|
start = s.find('<', start+1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// extract the var
|
|
|
|
std::string var = s.substr(start+1, end - start-1);
|
2006-02-20 21:42:18 +03:00
|
|
|
std::string replace = this->ExpandRuleVariable(var,
|
|
|
|
replaceValues);
|
2005-04-12 21:27:07 +04:00
|
|
|
expandedInput += s.substr(pos, start-pos);
|
|
|
|
expandedInput += replace;
|
|
|
|
// move to next one
|
|
|
|
start = s.find('<', start+var.size()+2);
|
|
|
|
pos = end+1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// add the rest of the input
|
|
|
|
expandedInput += s.substr(pos, s.size()-pos);
|
|
|
|
s = expandedInput;
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string
|
|
|
|
cmLocalGenerator::ConvertToOutputForExisting(const char* p)
|
|
|
|
{
|
2005-05-13 17:54:30 +04:00
|
|
|
std::string ret = this->Convert(p, START_OUTPUT, SHELL, true);
|
2004-10-21 22:34:02 +04:00
|
|
|
// if there are spaces in the path, then get the short path version
|
|
|
|
// if there is one
|
|
|
|
if(ret.find(' ') != std::string::npos)
|
|
|
|
{
|
|
|
|
if(cmSystemTools::FileExists(p))
|
|
|
|
{
|
|
|
|
if(!cmSystemTools::GetShortPath(ret.c_str(), ret))
|
|
|
|
{
|
2005-05-13 17:54:30 +04:00
|
|
|
ret = this->Convert(p,START_OUTPUT,MAKEFILE,true);
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* cmLocalGenerator::GetIncludeFlags(const char* lang)
|
2004-10-26 18:15:49 +04:00
|
|
|
{
|
2004-10-21 22:34:02 +04:00
|
|
|
if(!lang)
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->LanguageToIncludeFlags.count(lang))
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
return this->LanguageToIncludeFlags[lang].c_str();
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
cmOStringStream includeFlags;
|
2004-10-26 18:15:49 +04:00
|
|
|
std::vector<std::string> includes;
|
|
|
|
this->GetIncludeDirectories(includes);
|
2004-10-21 22:34:02 +04:00
|
|
|
std::vector<std::string>::iterator i;
|
2004-10-26 18:15:49 +04:00
|
|
|
|
|
|
|
std::string flagVar = "CMAKE_INCLUDE_FLAG_";
|
|
|
|
flagVar += lang;
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* includeFlag = this->Makefile->GetDefinition(flagVar.c_str());
|
2004-10-26 18:15:49 +04:00
|
|
|
flagVar = "CMAKE_INCLUDE_FLAG_SEP_";
|
|
|
|
flagVar += lang;
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* sep = this->Makefile->GetDefinition(flagVar.c_str());
|
2006-01-23 21:50:23 +03:00
|
|
|
bool quotePaths = false;
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Makefile->GetDefinition("CMAKE_QUOTE_INCLUDE_PATHS"))
|
2006-01-23 21:50:23 +03:00
|
|
|
{
|
|
|
|
quotePaths = true;
|
|
|
|
}
|
2004-10-26 18:15:49 +04:00
|
|
|
bool repeatFlag = true; // should the include flag be repeated like ie. -IA -IB
|
|
|
|
if(!sep)
|
|
|
|
{
|
|
|
|
sep = " ";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// if there is a separator then the flag is not repeated but is only given once
|
|
|
|
// i.e. -classpath a:b:c
|
|
|
|
repeatFlag = false;
|
|
|
|
}
|
|
|
|
bool flagUsed = false;
|
2005-12-27 22:56:56 +03:00
|
|
|
std::set<cmStdString> emitted;
|
2004-10-26 18:15:49 +04:00
|
|
|
for(i = includes.begin(); i != includes.end(); ++i)
|
|
|
|
{
|
2005-12-27 22:56:56 +03:00
|
|
|
#ifdef __APPLE__
|
|
|
|
if(cmSystemTools::IsPathToFramework(i->c_str()))
|
|
|
|
{
|
|
|
|
std::string frameworkDir = *i;
|
|
|
|
frameworkDir += "/../";
|
|
|
|
frameworkDir = cmSystemTools::CollapseFullPath(frameworkDir.c_str());
|
|
|
|
if(emitted.insert(frameworkDir).second)
|
|
|
|
{
|
|
|
|
includeFlags << "-F" << this->ConvertToOutputForExisting(frameworkDir.c_str()) << " ";
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
2004-10-26 18:15:49 +04:00
|
|
|
std::string include = *i;
|
|
|
|
if(!flagUsed || repeatFlag)
|
|
|
|
{
|
|
|
|
includeFlags << includeFlag;
|
|
|
|
flagUsed = true;
|
|
|
|
}
|
2006-01-23 21:50:23 +03:00
|
|
|
std::string includePath = this->ConvertToOutputForExisting(i->c_str());
|
|
|
|
if(quotePaths && includePath.size() && includePath[0] != '\"')
|
|
|
|
{
|
|
|
|
includeFlags << "\"";
|
|
|
|
}
|
|
|
|
includeFlags << includePath;
|
|
|
|
if(quotePaths && includePath.size() && includePath[0] != '\"')
|
|
|
|
{
|
|
|
|
includeFlags << "\"";
|
|
|
|
}
|
|
|
|
includeFlags << sep;
|
2004-10-26 18:15:49 +04:00
|
|
|
}
|
|
|
|
std::string flags = includeFlags.str();
|
|
|
|
// remove trailing separators
|
|
|
|
if((sep[0] != ' ') && flags[flags.size()-1] == sep[0])
|
|
|
|
{
|
|
|
|
flags[flags.size()-1] = ' ';
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
flags += this->Makefile->GetDefineFlags();
|
|
|
|
this->LanguageToIncludeFlags[lang] = flags;
|
2006-02-16 23:19:00 +03:00
|
|
|
|
|
|
|
// Use this temorary variable for the return value to work-around a
|
|
|
|
// bogus GCC 2.95 warning.
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* ret = this->LanguageToIncludeFlags[lang].c_str();
|
2006-02-16 23:19:00 +03:00
|
|
|
return ret;
|
2004-10-26 18:15:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalGenerator::GetIncludeDirectories(std::vector<std::string>& dirs)
|
|
|
|
{
|
2006-02-19 21:10:25 +03:00
|
|
|
// Need to decide whether to automatically include the source and
|
|
|
|
// binary directories at the beginning of the include path.
|
|
|
|
bool includeSourceDir = false;
|
|
|
|
bool includeBinaryDir = false;
|
|
|
|
|
2006-03-21 16:45:57 +03:00
|
|
|
// When automatic include directories are requested for a build then
|
|
|
|
// include the source and binary directories at the beginning of the
|
|
|
|
// include path to approximate include file behavior for an
|
|
|
|
// in-source build. This does not account for the case of a source
|
|
|
|
// file in a subdirectory of the current source directory but we
|
|
|
|
// cannot fix this because not all native build tools support
|
|
|
|
// per-source-file include paths.
|
|
|
|
if(this->Makefile->IsOn("CMAKE_INCLUDE_CURRENT_DIR"))
|
2006-02-19 21:10:25 +03:00
|
|
|
{
|
|
|
|
includeSourceDir = true;
|
|
|
|
includeBinaryDir = true;
|
|
|
|
}
|
|
|
|
|
2004-10-21 22:34:02 +04:00
|
|
|
// CMake versions below 2.0 would add the source tree to the -I path
|
|
|
|
// automatically. Preserve compatibility.
|
|
|
|
const char* versionValue =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetDefinition("CMAKE_BACKWARDS_COMPATIBILITY");
|
2006-02-18 19:51:23 +03:00
|
|
|
int major = 0;
|
|
|
|
int minor = 0;
|
|
|
|
if(versionValue && sscanf(versionValue, "%d.%d", &major, &minor) != 2)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2006-02-18 19:51:23 +03:00
|
|
|
versionValue = 0;
|
|
|
|
}
|
|
|
|
if(versionValue && major < 2)
|
|
|
|
{
|
|
|
|
includeSourceDir = true;
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
2006-02-19 21:10:25 +03:00
|
|
|
|
|
|
|
// Hack for VTK 4.0 - 4.4 which depend on the old behavior but do
|
|
|
|
// not set the backwards compatibility level automatically.
|
2004-10-21 22:34:02 +04:00
|
|
|
const char* vtkSourceDir =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetDefinition("VTK_SOURCE_DIR");
|
2004-10-21 22:34:02 +04:00
|
|
|
if(vtkSourceDir)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* vtk_major = this->Makefile->GetDefinition("VTK_MAJOR_VERSION");
|
|
|
|
const char* vtk_minor = this->Makefile->GetDefinition("VTK_MINOR_VERSION");
|
2004-10-21 22:34:02 +04:00
|
|
|
vtk_major = vtk_major? vtk_major : "4";
|
|
|
|
vtk_minor = vtk_minor? vtk_minor : "4";
|
2006-02-18 23:42:14 +03:00
|
|
|
int vmajor = 0;
|
|
|
|
int vminor = 0;
|
|
|
|
if(sscanf(vtk_major, "%d", &vmajor) && sscanf(vtk_minor, "%d", &vminor) &&
|
|
|
|
vmajor == 4 && vminor <= 4)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
includeSourceDir = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-18 19:51:23 +03:00
|
|
|
// Do not repeat an include path.
|
|
|
|
std::set<cmStdString> emitted;
|
|
|
|
|
|
|
|
// Store the automatic include paths.
|
|
|
|
if(includeBinaryDir)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
dirs.push_back(this->Makefile->GetStartOutputDirectory());
|
|
|
|
emitted.insert(this->Makefile->GetStartOutputDirectory());
|
2006-02-18 19:51:23 +03:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
if(includeSourceDir)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
if(emitted.find(this->Makefile->GetStartDirectory()) == emitted.end())
|
2006-02-18 19:51:23 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
dirs.push_back(this->Makefile->GetStartDirectory());
|
|
|
|
emitted.insert(this->Makefile->GetStartDirectory());
|
2006-02-18 19:51:23 +03:00
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
|
2004-10-26 18:15:49 +04:00
|
|
|
// Do not explicitly add the standard include path "/usr/include".
|
|
|
|
// This can cause problems with certain standard library
|
|
|
|
// implementations because the wrong headers may be found first.
|
2006-02-18 19:51:23 +03:00
|
|
|
emitted.insert("/usr/include");
|
|
|
|
if(const char* implicitIncludes =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetDefinition("CMAKE_PLATFORM_IMPLICIT_INCLUDE_DIRECTORIES"))
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
std::vector<std::string> implicitIncludeVec;
|
2006-02-18 19:51:23 +03:00
|
|
|
cmSystemTools::ExpandListArgument(implicitIncludes, implicitIncludeVec);
|
|
|
|
for(unsigned int k = 0; k < implicitIncludeVec.size(); ++k)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2006-02-18 19:51:23 +03:00
|
|
|
emitted.insert(implicitIncludeVec[k]);
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
}
|
2004-10-26 18:15:49 +04:00
|
|
|
|
|
|
|
// Construct the ordered list.
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<std::string>& includes = this->Makefile->GetIncludeDirectories();
|
2004-10-26 18:15:49 +04:00
|
|
|
for(std::vector<std::string>::iterator i = includes.begin();
|
|
|
|
i != includes.end(); ++i)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2006-02-18 19:51:23 +03:00
|
|
|
if(emitted.find(*i) == emitted.end())
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2004-10-26 18:15:49 +04:00
|
|
|
dirs.push_back(*i);
|
2006-02-18 19:51:23 +03:00
|
|
|
emitted.insert(*i);
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalGenerator::GetTargetFlags(std::string& linkLibs,
|
|
|
|
std::string& flags,
|
|
|
|
std::string& linkFlags,
|
|
|
|
cmTarget& target)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string buildType = this->Makefile->GetSafeDefinition("CMAKE_BUILD_TYPE");
|
2004-10-21 22:34:02 +04:00
|
|
|
buildType = cmSystemTools::UpperCase(buildType);
|
|
|
|
const char* libraryLinkVariable = "CMAKE_SHARED_LINKER_FLAGS"; // default to shared library
|
|
|
|
|
|
|
|
switch(target.GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
{
|
|
|
|
const char* targetLinkFlags = target.GetProperty("STATIC_LIBRARY_FLAGS");
|
|
|
|
if(targetLinkFlags)
|
|
|
|
{
|
|
|
|
linkFlags += targetLinkFlags;
|
|
|
|
linkFlags += " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
libraryLinkVariable = "CMAKE_MODULE_LINKER_FLAGS";
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
linkFlags = this->Makefile->GetSafeDefinition(libraryLinkVariable);
|
2004-10-21 22:34:02 +04:00
|
|
|
linkFlags += " ";
|
|
|
|
if(buildType.size())
|
|
|
|
{
|
|
|
|
std::string build = libraryLinkVariable;
|
|
|
|
build += "_";
|
|
|
|
build += buildType;
|
2006-03-15 19:02:08 +03:00
|
|
|
linkFlags += this->Makefile->GetSafeDefinition(build.c_str());
|
2004-10-21 22:34:02 +04:00
|
|
|
linkFlags += " ";
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Makefile->IsOn("WIN32") && !(this->Makefile->IsOn("CYGWIN") || this->Makefile->IsOn("MINGW")))
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
const std::vector<cmSourceFile*>& sources = target.GetSourceFiles();
|
|
|
|
for(std::vector<cmSourceFile*>::const_iterator i = sources.begin();
|
|
|
|
i != sources.end(); ++i)
|
|
|
|
{
|
|
|
|
if((*i)->GetSourceExtension() == "def")
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
linkFlags += this->Makefile->GetSafeDefinition("CMAKE_LINK_DEF_FILE_FLAG");
|
2005-05-13 17:54:30 +04:00
|
|
|
linkFlags += this->Convert((*i)->GetFullPath().c_str(),START_OUTPUT,MAKEFILE);
|
2004-10-21 22:34:02 +04:00
|
|
|
linkFlags += " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const char* targetLinkFlags = target.GetProperty("LINK_FLAGS");
|
|
|
|
if(targetLinkFlags)
|
|
|
|
{
|
|
|
|
linkFlags += targetLinkFlags;
|
|
|
|
linkFlags += " ";
|
2006-04-03 20:57:51 +04:00
|
|
|
std::string configLinkFlags = targetLinkFlags;
|
|
|
|
configLinkFlags += buildType;
|
|
|
|
targetLinkFlags = target.GetProperty(configLinkFlags.c_str());
|
|
|
|
if(targetLinkFlags)
|
|
|
|
{
|
|
|
|
linkFlags += targetLinkFlags;
|
|
|
|
linkFlags += " ";
|
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
cmOStringStream linklibsStr;
|
2006-02-16 23:19:00 +03:00
|
|
|
this->OutputLinkLibraries(linklibsStr, target, false);
|
2004-10-21 22:34:02 +04:00
|
|
|
linkLibs = linklibsStr.str();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
linkFlags += this->Makefile->GetSafeDefinition("CMAKE_EXE_LINKER_FLAGS");
|
2004-10-21 22:34:02 +04:00
|
|
|
linkFlags += " ";
|
|
|
|
if(buildType.size())
|
|
|
|
{
|
|
|
|
std::string build = "CMAKE_EXE_LINKER_FLAGS_";
|
|
|
|
build += buildType;
|
2006-03-15 19:02:08 +03:00
|
|
|
linkFlags += this->Makefile->GetSafeDefinition(build.c_str());
|
2004-10-21 22:34:02 +04:00
|
|
|
linkFlags += " ";
|
|
|
|
}
|
|
|
|
const char* linkLanguage = target.GetLinkerLanguage(this->GetGlobalGenerator());
|
2004-10-27 18:53:01 +04:00
|
|
|
if(!linkLanguage)
|
|
|
|
{
|
|
|
|
cmSystemTools::Error("CMake can not determine linker language for target:",
|
|
|
|
target.GetName());
|
|
|
|
return;
|
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
std::string langVar = "CMAKE_";
|
|
|
|
langVar += linkLanguage;
|
|
|
|
std::string flagsVar = langVar + "_FLAGS";
|
|
|
|
std::string sharedFlagsVar = "CMAKE_SHARED_LIBRARY_";
|
2004-10-29 23:32:06 +04:00
|
|
|
sharedFlagsVar += linkLanguage;
|
2004-10-21 22:34:02 +04:00
|
|
|
sharedFlagsVar += "_FLAGS";
|
2006-03-15 19:02:08 +03:00
|
|
|
flags += this->Makefile->GetSafeDefinition(flagsVar.c_str());
|
2004-10-21 22:34:02 +04:00
|
|
|
flags += " ";
|
2006-03-15 19:02:08 +03:00
|
|
|
flags += this->Makefile->GetSafeDefinition(sharedFlagsVar.c_str());
|
2004-10-21 22:34:02 +04:00
|
|
|
flags += " ";
|
|
|
|
cmOStringStream linklibs;
|
2006-02-16 23:19:00 +03:00
|
|
|
this->OutputLinkLibraries(linklibs, target, false);
|
2004-10-21 22:34:02 +04:00
|
|
|
linkLibs = linklibs.str();
|
2006-03-15 19:02:08 +03:00
|
|
|
if(cmSystemTools::IsOn(this->Makefile->GetDefinition("BUILD_SHARED_LIBS")))
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
std::string sFlagVar = std::string("CMAKE_SHARED_BUILD_") + linkLanguage
|
|
|
|
+ std::string("_FLAGS");
|
2006-03-15 19:02:08 +03:00
|
|
|
linkFlags += this->Makefile->GetSafeDefinition(sFlagVar.c_str());
|
2004-10-21 22:34:02 +04:00
|
|
|
linkFlags += " ";
|
|
|
|
}
|
|
|
|
if ( target.GetPropertyAsBool("WIN32_EXECUTABLE") )
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
linkFlags += this->Makefile->GetSafeDefinition("CMAKE_CREATE_WIN32_EXE");
|
2004-10-21 22:34:02 +04:00
|
|
|
linkFlags += " ";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
linkFlags += this->Makefile->GetSafeDefinition("CMAKE_CREATE_CONSOLE_EXE");
|
2004-10-21 22:34:02 +04:00
|
|
|
linkFlags += " ";
|
|
|
|
}
|
|
|
|
const char* targetLinkFlags = target.GetProperty("LINK_FLAGS");
|
|
|
|
if(targetLinkFlags)
|
|
|
|
{
|
|
|
|
linkFlags += targetLinkFlags;
|
2006-04-03 20:57:51 +04:00
|
|
|
linkFlags += " ";
|
|
|
|
std::string configLinkFlags = targetLinkFlags;
|
|
|
|
configLinkFlags += buildType;
|
|
|
|
targetLinkFlags = target.GetProperty(configLinkFlags.c_str());
|
|
|
|
if(targetLinkFlags)
|
|
|
|
{
|
|
|
|
linkFlags += targetLinkFlags;
|
|
|
|
linkFlags += " ";
|
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
}
|
2004-10-21 23:21:38 +04:00
|
|
|
break;
|
|
|
|
case cmTarget::UTILITY:
|
2006-02-24 18:56:39 +03:00
|
|
|
case cmTarget::GLOBAL_TARGET:
|
2004-10-21 23:21:38 +04:00
|
|
|
case cmTarget::INSTALL_FILES:
|
|
|
|
case cmTarget::INSTALL_PROGRAMS:
|
2006-03-29 01:25:29 +04:00
|
|
|
case cmTarget::INSTALL_DIRECTORY:
|
2004-10-21 22:34:02 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Output the linking rules on a command line. For executables,
|
|
|
|
* targetLibrary should be a NULL pointer. For libraries, it should point
|
|
|
|
* to the name of the library. This will not link a library against itself.
|
|
|
|
*/
|
|
|
|
void cmLocalGenerator::OutputLinkLibraries(std::ostream& fout,
|
2006-02-16 23:19:00 +03:00
|
|
|
cmTarget& tgt,
|
|
|
|
bool relink)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
// Try to emit each search path once
|
|
|
|
std::set<cmStdString> emitted;
|
|
|
|
// Embed runtime search paths if possible and if required.
|
|
|
|
bool outputRuntime = true;
|
|
|
|
std::string runtimeFlag;
|
|
|
|
std::string runtimeSep;
|
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* config = this->Makefile->GetDefinition("CMAKE_BUILD_TYPE");
|
2004-10-21 22:34:02 +04:00
|
|
|
const char* linkLanguage = tgt.GetLinkerLanguage(this->GetGlobalGenerator());
|
2004-10-27 18:53:01 +04:00
|
|
|
if(!linkLanguage)
|
|
|
|
{
|
2005-02-24 21:16:41 +03:00
|
|
|
cmSystemTools::
|
|
|
|
Error("CMake can not determine linker language for target:",
|
|
|
|
tgt.GetName());
|
2004-10-27 18:53:01 +04:00
|
|
|
return;
|
|
|
|
}
|
2004-10-21 22:34:02 +04:00
|
|
|
std::string runTimeFlagVar = "CMAKE_SHARED_LIBRARY_RUNTIME_";
|
|
|
|
runTimeFlagVar += linkLanguage;
|
|
|
|
runTimeFlagVar += "_FLAG";
|
|
|
|
std::string runTimeFlagSepVar = runTimeFlagVar + "_SEP";
|
2006-03-15 19:02:08 +03:00
|
|
|
runtimeFlag = this->Makefile->GetSafeDefinition(runTimeFlagVar.c_str());
|
|
|
|
runtimeSep = this->Makefile->GetSafeDefinition(runTimeFlagSepVar.c_str());
|
2004-10-21 22:34:02 +04:00
|
|
|
|
|
|
|
// concatenate all paths or no?
|
|
|
|
bool runtimeConcatenate = ( runtimeSep!="" );
|
2006-03-15 19:02:08 +03:00
|
|
|
if(runtimeFlag == "" || this->Makefile->IsOn("CMAKE_SKIP_RPATH"))
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
outputRuntime = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Some search paths should never be emitted
|
|
|
|
emitted.insert("");
|
|
|
|
emitted.insert("/usr/lib");
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string libPathFlag = this->Makefile->GetRequiredDefinition("CMAKE_LIBRARY_PATH_FLAG");
|
|
|
|
std::string libLinkFlag = this->Makefile->GetSafeDefinition("CMAKE_LINK_LIBRARY_FLAG");
|
2004-10-21 22:34:02 +04:00
|
|
|
// collect all the flags needed for linking libraries
|
|
|
|
std::string linkLibs;
|
|
|
|
|
|
|
|
// Flags to link an executable to shared libraries.
|
|
|
|
std::string linkFlagsVar = "CMAKE_SHARED_LIBRARY_LINK_";
|
|
|
|
linkFlagsVar += linkLanguage;
|
|
|
|
linkFlagsVar += "_FLAGS";
|
|
|
|
if( tgt.GetType() == cmTarget::EXECUTABLE )
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
linkLibs = this->Makefile->GetSafeDefinition(linkFlagsVar.c_str());
|
2004-10-21 22:34:02 +04:00
|
|
|
linkLibs += " ";
|
|
|
|
}
|
2006-01-14 02:18:32 +03:00
|
|
|
|
|
|
|
// Compute the link library and directory information.
|
|
|
|
std::vector<cmStdString> libNames;
|
|
|
|
std::vector<cmStdString> libDirs;
|
|
|
|
this->ComputeLinkInformation(tgt, config, libNames, libDirs);
|
|
|
|
|
2006-02-16 23:19:00 +03:00
|
|
|
// Select whether to generate an rpath for the install tree or the
|
|
|
|
// build tree.
|
|
|
|
bool linking_for_install =
|
|
|
|
relink || tgt.GetPropertyAsBool("BUILD_WITH_INSTALL_RPATH");
|
|
|
|
bool use_install_rpath =
|
|
|
|
outputRuntime && tgt.HaveInstallTreeRPATH() && linking_for_install;
|
|
|
|
bool use_build_rpath =
|
|
|
|
outputRuntime && tgt.HaveBuildTreeRPATH() && !linking_for_install;
|
|
|
|
|
|
|
|
// Construct the RPATH.
|
|
|
|
std::vector<std::string> runtimeDirs;
|
|
|
|
if(use_install_rpath)
|
|
|
|
{
|
|
|
|
const char* install_rpath = tgt.GetProperty("INSTALL_RPATH");
|
|
|
|
cmSystemTools::ExpandListArgument(install_rpath, runtimeDirs);
|
|
|
|
for(unsigned int i=0; i < runtimeDirs.size(); ++i)
|
|
|
|
{
|
|
|
|
runtimeDirs[i] =
|
|
|
|
this->Convert(runtimeDirs[i].c_str(), FULL, SHELL, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
// Append the library search path flags.
|
|
|
|
for(std::vector<cmStdString>::const_iterator libDir = libDirs.begin();
|
|
|
|
libDir != libDirs.end(); ++libDir)
|
2005-02-24 21:16:41 +03:00
|
|
|
{
|
2006-01-14 02:18:32 +03:00
|
|
|
std::string libpath = this->ConvertToOutputForExisting(libDir->c_str());
|
2004-10-21 22:34:02 +04:00
|
|
|
if(emitted.insert(libpath).second)
|
|
|
|
{
|
|
|
|
std::string fullLibPath;
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->WindowsShell && this->UseRelativePaths)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
fullLibPath = "\"`cd ";
|
|
|
|
}
|
|
|
|
fullLibPath += libpath;
|
2006-03-15 19:02:08 +03:00
|
|
|
if(!this->WindowsShell && this->UseRelativePaths)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
fullLibPath += ";pwd`\"";
|
|
|
|
}
|
|
|
|
std::string::size_type pos = libDir->find(libPathFlag.c_str());
|
|
|
|
if((pos == std::string::npos || pos > 0)
|
|
|
|
&& libDir->find("${") == std::string::npos)
|
|
|
|
{
|
|
|
|
linkLibs += libPathFlag;
|
2006-02-16 23:19:00 +03:00
|
|
|
if(use_build_rpath)
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
runtimeDirs.push_back( fullLibPath );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
linkLibs += fullLibPath;
|
|
|
|
linkLibs += " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
// Append the link libraries.
|
|
|
|
for(std::vector<cmStdString>::iterator lib = libNames.begin();
|
|
|
|
lib != libNames.end(); ++lib)
|
|
|
|
{
|
|
|
|
linkLibs += *lib;
|
|
|
|
linkLibs += " ";
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
fout << linkLibs;
|
|
|
|
|
2006-02-16 23:19:00 +03:00
|
|
|
if(!runtimeDirs.empty())
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
|
|
|
// For the runtime search directories, do a "-Wl,-rpath,a:b:c" or
|
|
|
|
// a "-R a -R b -R c" type link line
|
|
|
|
fout << runtimeFlag;
|
|
|
|
std::vector<std::string>::iterator itr = runtimeDirs.begin();
|
|
|
|
fout << *itr;
|
|
|
|
++itr;
|
|
|
|
for( ; itr != runtimeDirs.end(); ++itr )
|
|
|
|
{
|
|
|
|
if(runtimeConcatenate)
|
|
|
|
{
|
|
|
|
fout << runtimeSep << *itr;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fout << " " << runtimeFlag << *itr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fout << " ";
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
if(this->Makefile->GetDefinition("CMAKE_STANDARD_LIBRARIES"))
|
2004-10-21 22:34:02 +04:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
fout << this->Makefile->GetDefinition("CMAKE_STANDARD_LIBRARIES") << " ";
|
2004-10-21 22:34:02 +04:00
|
|
|
}
|
|
|
|
}
|
2005-02-02 21:19:57 +03:00
|
|
|
|
2006-01-14 02:18:32 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalGenerator::ComputeLinkInformation(cmTarget& target,
|
|
|
|
const char* config,
|
|
|
|
std::vector<cmStdString>& outLibs,
|
|
|
|
std::vector<cmStdString>& outDirs,
|
|
|
|
std::vector<cmStdString>* fullPathLibs)
|
|
|
|
{
|
|
|
|
// Compute which library configuration to link.
|
|
|
|
cmTarget::LinkLibraryType linkType = cmTarget::OPTIMIZED;
|
|
|
|
if(config && cmSystemTools::UpperCase(config) == "DEBUG")
|
|
|
|
{
|
|
|
|
linkType = cmTarget::DEBUG;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the list of libraries against which this target wants to link.
|
|
|
|
std::vector<std::string> linkLibraries;
|
2006-03-15 19:02:08 +03:00
|
|
|
const cmTarget::LinkLibraryVectorType& inLibs = target.GetLinkLibraries();
|
|
|
|
for(cmTarget::LinkLibraryVectorType::const_iterator j = inLibs.begin();
|
2006-01-14 02:18:32 +03:00
|
|
|
j != inLibs.end(); ++j)
|
|
|
|
{
|
|
|
|
// For backwards compatibility variables may have been expanded
|
|
|
|
// inside library names. Clean up the resulting name.
|
|
|
|
std::string lib = j->first;
|
|
|
|
std::string::size_type pos = lib.find_first_not_of(" \t\r\n");
|
|
|
|
if(pos != lib.npos)
|
|
|
|
{
|
|
|
|
lib = lib.substr(pos, lib.npos);
|
|
|
|
}
|
|
|
|
pos = lib.find_last_not_of(" \t\r\n");
|
|
|
|
if(pos != lib.npos)
|
2006-02-10 18:11:16 +03:00
|
|
|
{
|
|
|
|
lib = lib.substr(0, pos+1);
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
|
|
|
if(lib.empty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Link to a library if it is not the same target and is meant for
|
|
|
|
// this configuration type.
|
|
|
|
if((target.GetType() == cmTarget::EXECUTABLE ||
|
2006-02-10 18:11:16 +03:00
|
|
|
lib != target.GetName()) &&
|
2006-01-14 02:18:32 +03:00
|
|
|
(j->second == cmTarget::GENERAL || j->second == linkType))
|
|
|
|
{
|
|
|
|
// Compute the proper name to use to link this library.
|
2006-03-15 19:02:08 +03:00
|
|
|
cmTarget* tgt = this->GlobalGenerator->FindTarget(0, lib.c_str());
|
2006-01-14 02:18:32 +03:00
|
|
|
if(tgt)
|
|
|
|
{
|
|
|
|
// This is a CMake target. Ask the target for its real name.
|
|
|
|
linkLibraries.push_back(tgt->GetFullName(config));
|
|
|
|
if(fullPathLibs)
|
|
|
|
{
|
|
|
|
fullPathLibs->push_back(tgt->GetFullPath(config));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// This is not a CMake target. Use the name given.
|
2006-02-10 18:11:16 +03:00
|
|
|
linkLibraries.push_back(lib);
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the list of directories the target wants to search for libraries.
|
|
|
|
const std::vector<std::string>&
|
|
|
|
linkDirectories = target.GetLinkDirectories();
|
|
|
|
|
|
|
|
// Compute the link directory order needed to link the libraries.
|
|
|
|
cmOrderLinkDirectories orderLibs;
|
|
|
|
orderLibs.SetLinkPrefix(
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetDefinition("CMAKE_STATIC_LIBRARY_PREFIX"));
|
2006-01-14 02:18:32 +03:00
|
|
|
orderLibs.AddLinkExtension(
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetDefinition("CMAKE_STATIC_LIBRARY_SUFFIX"));
|
2006-01-14 02:18:32 +03:00
|
|
|
orderLibs.AddLinkExtension(
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetDefinition("CMAKE_SHARED_LIBRARY_SUFFIX"));
|
2006-03-22 19:10:58 +03:00
|
|
|
orderLibs.AddLinkExtension(
|
|
|
|
this->Makefile->GetDefinition("CMAKE_IMPORT_LIBRARY_SUFFIX"));
|
2006-01-14 02:18:32 +03:00
|
|
|
orderLibs.AddLinkExtension(
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetDefinition("CMAKE_LINK_LIBRARY_SUFFIX"));
|
2006-03-22 19:10:58 +03:00
|
|
|
if(const char* linkSuffixes =
|
|
|
|
this->Makefile->GetDefinition("CMAKE_EXTRA_LINK_EXTENSIONS"))
|
|
|
|
{
|
|
|
|
std::vector<std::string> linkSuffixVec;
|
|
|
|
cmSystemTools::ExpandListArgument(linkSuffixes, linkSuffixVec);
|
|
|
|
for(std::vector<std::string>::iterator i = linkSuffixVec.begin();
|
|
|
|
i != linkSuffixVec.end(); ++i)
|
|
|
|
{
|
|
|
|
orderLibs.AddLinkExtension(i->c_str());
|
|
|
|
}
|
|
|
|
}
|
2006-01-14 02:18:32 +03:00
|
|
|
orderLibs.SetLinkInformation(target.GetName(),
|
|
|
|
linkLibraries,
|
|
|
|
linkDirectories);
|
|
|
|
orderLibs.DetermineLibraryPathOrder();
|
|
|
|
std::vector<cmStdString> orderedLibs;
|
|
|
|
orderLibs.GetLinkerInformation(outDirs, orderedLibs);
|
|
|
|
if(fullPathLibs)
|
|
|
|
{
|
|
|
|
orderLibs.GetFullPathLibraries(*fullPathLibs);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure libraries are linked with the proper syntax.
|
|
|
|
std::string libLinkFlag =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetSafeDefinition("CMAKE_LINK_LIBRARY_FLAG");
|
2006-01-14 02:18:32 +03:00
|
|
|
std::string libLinkSuffix =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->GetSafeDefinition("CMAKE_LINK_LIBRARY_SUFFIX");
|
2006-01-14 02:18:32 +03:00
|
|
|
for(std::vector<cmStdString>::iterator l = orderedLibs.begin();
|
|
|
|
l != orderedLibs.end(); ++l)
|
|
|
|
{
|
|
|
|
std::string lib = *l;
|
|
|
|
if(lib[0] == '-' || lib[0] == '$' || lib[0] == '`')
|
|
|
|
{
|
|
|
|
// The library is linked with special syntax by the user.
|
|
|
|
outLibs.push_back(lib);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Generate the proper link syntax.
|
|
|
|
lib = libLinkFlag;
|
|
|
|
lib += *l;
|
|
|
|
lib += libLinkSuffix;
|
|
|
|
outLibs.push_back(lib);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-02 21:19:57 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalGenerator::AddLanguageFlags(std::string& flags,
|
2006-02-24 19:13:31 +03:00
|
|
|
const char* lang,
|
|
|
|
const char* config)
|
2005-02-02 21:19:57 +03:00
|
|
|
{
|
|
|
|
// Add language-specific flags.
|
|
|
|
std::string flagsVar = "CMAKE_";
|
|
|
|
flagsVar += lang;
|
|
|
|
flagsVar += "_FLAGS";
|
2006-03-24 17:15:05 +03:00
|
|
|
if(this->EmitUniversalBinaryFlags)
|
|
|
|
{
|
|
|
|
const char* osxArch =
|
|
|
|
this->Makefile->GetDefinition("CMAKE_OSX_ARCHITECTURES");
|
|
|
|
const char* sysroot =
|
|
|
|
this->Makefile->GetDefinition("CMAKE_OSX_SYSROOT");
|
|
|
|
if(osxArch && sysroot && lang && lang[0] =='C')
|
|
|
|
{
|
|
|
|
std::vector<std::string> archs;
|
|
|
|
cmSystemTools::ExpandListArgument(std::string(osxArch),
|
|
|
|
archs);
|
|
|
|
if(archs.size() > 1)
|
|
|
|
{
|
|
|
|
for( std::vector<std::string>::iterator i = archs.begin();
|
|
|
|
i != archs.end(); ++i)
|
|
|
|
{
|
|
|
|
flags += " -arch ";
|
|
|
|
flags += *i;
|
|
|
|
}
|
|
|
|
flags += " -isysroot ";
|
|
|
|
flags += sysroot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-24 19:13:31 +03:00
|
|
|
this->AddConfigVariableFlags(flags, flagsVar.c_str(), config);
|
2005-02-02 21:19:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2006-01-14 02:18:32 +03:00
|
|
|
std::string cmLocalGenerator::GetRealDependency(const char* inName,
|
2006-01-14 04:51:45 +03:00
|
|
|
const char* config)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
|
|
|
// Older CMake code may specify the dependency using the target
|
|
|
|
// output file rather than the target name. Such code would have
|
|
|
|
// been written before there was support for target properties that
|
|
|
|
// modify the name so stripping down to just the file name should
|
|
|
|
// produce the target name in this case.
|
|
|
|
std::string name = cmSystemTools::GetFilenameName(inName);
|
|
|
|
if(cmSystemTools::GetFilenameLastExtension(name) == ".exe")
|
|
|
|
{
|
|
|
|
name = cmSystemTools::GetFilenameWithoutLastExtension(name);
|
|
|
|
}
|
|
|
|
|
2006-01-14 04:51:45 +03:00
|
|
|
// Look for a CMake target with the given name.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(cmTarget* target = this->GlobalGenerator->FindTarget(0, name.c_str()))
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
|
|
|
switch (target->GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
{
|
|
|
|
// Get the location of the target's output file and depend on it.
|
|
|
|
if(const char* location = target->GetLocation(config))
|
|
|
|
{
|
|
|
|
return location;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmTarget::UTILITY:
|
2006-02-24 18:56:39 +03:00
|
|
|
case cmTarget::GLOBAL_TARGET:
|
2006-01-14 04:51:45 +03:00
|
|
|
// Depending on a utility target may not work but just trust
|
|
|
|
// the user to have given a valid name.
|
|
|
|
return inName;
|
2006-01-14 02:18:32 +03:00
|
|
|
case cmTarget::INSTALL_FILES:
|
|
|
|
case cmTarget::INSTALL_PROGRAMS:
|
2006-03-29 01:25:29 +04:00
|
|
|
case cmTarget::INSTALL_DIRECTORY:
|
2006-01-14 02:18:32 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-14 04:51:45 +03:00
|
|
|
// The name was not that of a CMake target. It must name a file.
|
|
|
|
if(cmSystemTools::FileIsFullPath(inName))
|
|
|
|
{
|
|
|
|
// This is a full path. Return it as given.
|
|
|
|
return inName;
|
|
|
|
}
|
2006-01-24 15:58:55 +03:00
|
|
|
// Treat the name as relative to the source directory in which it
|
|
|
|
// was given.
|
2006-03-15 19:02:08 +03:00
|
|
|
name = this->Makefile->GetCurrentDirectory();
|
2006-01-24 15:58:55 +03:00
|
|
|
name += "/";
|
|
|
|
name += inName;
|
|
|
|
return name;
|
2006-01-14 02:18:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
2005-02-02 21:19:57 +03:00
|
|
|
void cmLocalGenerator::AddSharedFlags(std::string& flags,
|
2006-02-24 19:13:31 +03:00
|
|
|
const char* lang,
|
|
|
|
bool shared)
|
2005-02-02 21:19:57 +03:00
|
|
|
{
|
|
|
|
std::string flagsVar;
|
|
|
|
|
|
|
|
// Add flags for dealing with shared libraries for this language.
|
|
|
|
if(shared)
|
|
|
|
{
|
|
|
|
flagsVar = "CMAKE_SHARED_LIBRARY_";
|
|
|
|
flagsVar += lang;
|
|
|
|
flagsVar += "_FLAGS";
|
2006-03-15 19:02:08 +03:00
|
|
|
this->AppendFlags(flags, this->Makefile->GetDefinition(flagsVar.c_str()));
|
2005-02-02 21:19:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add flags specific to shared builds.
|
2006-03-15 19:02:08 +03:00
|
|
|
if(cmSystemTools::IsOn(this->Makefile->GetDefinition("BUILD_SHARED_LIBS")))
|
2005-02-02 21:19:57 +03:00
|
|
|
{
|
|
|
|
flagsVar = "CMAKE_SHARED_BUILD_";
|
|
|
|
flagsVar += lang;
|
|
|
|
flagsVar += "_FLAGS";
|
2006-03-15 19:02:08 +03:00
|
|
|
this->AppendFlags(flags, this->Makefile->GetDefinition(flagsVar.c_str()));
|
2005-02-02 21:19:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalGenerator::AddConfigVariableFlags(std::string& flags,
|
2006-02-24 19:13:31 +03:00
|
|
|
const char* var,
|
|
|
|
const char* config)
|
2005-02-02 21:19:57 +03:00
|
|
|
{
|
|
|
|
// Add the flags from the variable itself.
|
|
|
|
std::string flagsVar = var;
|
2006-03-15 19:02:08 +03:00
|
|
|
this->AppendFlags(flags, this->Makefile->GetDefinition(flagsVar.c_str()));
|
2005-02-02 21:19:57 +03:00
|
|
|
// Add the flags from the build-type specific variable.
|
2006-02-24 19:13:31 +03:00
|
|
|
if(config && *config)
|
2005-02-02 21:19:57 +03:00
|
|
|
{
|
|
|
|
flagsVar += "_";
|
2006-02-24 19:13:31 +03:00
|
|
|
flagsVar += cmSystemTools::UpperCase(config);
|
2006-03-15 19:02:08 +03:00
|
|
|
this->AppendFlags(flags, this->Makefile->GetDefinition(flagsVar.c_str()));
|
2005-02-02 21:19:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmLocalGenerator::AppendFlags(std::string& flags,
|
|
|
|
const char* newFlags)
|
|
|
|
{
|
|
|
|
if(newFlags && *newFlags)
|
|
|
|
{
|
|
|
|
if(flags.size())
|
|
|
|
{
|
|
|
|
flags += " ";
|
|
|
|
}
|
|
|
|
flags += newFlags;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
cmLocalGenerator::ConstructScript(const cmCustomCommandLines& commandLines,
|
2006-02-08 18:58:36 +03:00
|
|
|
const char* workingDirectory,
|
2005-02-22 18:32:44 +03:00
|
|
|
const char* newline)
|
2006-02-08 18:58:36 +03:00
|
|
|
|
2005-02-22 18:32:44 +03:00
|
|
|
{
|
|
|
|
// Store the script in a string.
|
|
|
|
std::string script;
|
2006-02-08 18:58:36 +03:00
|
|
|
if(workingDirectory)
|
|
|
|
{
|
|
|
|
script += "cd ";
|
|
|
|
script += this->Convert(workingDirectory, START_OUTPUT, SHELL);
|
|
|
|
script += newline;
|
|
|
|
}
|
2005-02-22 18:32:44 +03:00
|
|
|
|
|
|
|
// Write each command on a single line.
|
|
|
|
for(cmCustomCommandLines::const_iterator cl = commandLines.begin();
|
|
|
|
cl != commandLines.end(); ++cl)
|
|
|
|
{
|
|
|
|
// Start with the command name.
|
|
|
|
const cmCustomCommandLine& commandLine = *cl;
|
2005-05-13 17:54:30 +04:00
|
|
|
script += this->Convert(commandLine[0].c_str(),START_OUTPUT,SHELL);
|
2005-02-22 18:32:44 +03:00
|
|
|
|
|
|
|
// Add the arguments.
|
|
|
|
for(unsigned int j=1;j < commandLine.size(); ++j)
|
|
|
|
{
|
|
|
|
script += " ";
|
|
|
|
script += cmSystemTools::EscapeSpaces(commandLine[j].c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
// End the line.
|
|
|
|
script += newline;
|
|
|
|
}
|
|
|
|
return script;
|
|
|
|
}
|
2005-02-25 00:04:54 +03:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
cmLocalGenerator::ConvertToOptionallyRelativeOutputPath(const char* remote)
|
2005-05-13 17:54:30 +04:00
|
|
|
{
|
|
|
|
return this->Convert(remote, START_OUTPUT, SHELL, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
std::string cmLocalGenerator::Convert(const char* source,
|
|
|
|
RelativeRoot relative,
|
|
|
|
OutputFormat output,
|
|
|
|
bool optional)
|
2005-02-25 00:04:54 +03:00
|
|
|
{
|
|
|
|
// Convert the path to a relative path.
|
2005-05-13 17:54:30 +04:00
|
|
|
std::string result = source;
|
2005-02-25 00:04:54 +03:00
|
|
|
|
2006-03-15 19:02:08 +03:00
|
|
|
if (!optional || this->UseRelativePaths)
|
2005-05-13 17:54:30 +04:00
|
|
|
{
|
|
|
|
switch (relative)
|
|
|
|
{
|
|
|
|
case HOME:
|
|
|
|
//result = cmSystemTools::CollapseFullPath(result.c_str());
|
2006-03-15 19:02:08 +03:00
|
|
|
result = this->GlobalGenerator->
|
|
|
|
ConvertToRelativePath(this->HomeDirectoryComponents, result.c_str());
|
2005-05-13 17:54:30 +04:00
|
|
|
break;
|
|
|
|
case START:
|
|
|
|
//result = cmSystemTools::CollapseFullPath(result.c_str());
|
2006-03-15 19:02:08 +03:00
|
|
|
result = this->GlobalGenerator->
|
|
|
|
ConvertToRelativePath(this->StartDirectoryComponents, result.c_str());
|
2005-05-13 17:54:30 +04:00
|
|
|
break;
|
|
|
|
case HOME_OUTPUT:
|
|
|
|
//result = cmSystemTools::CollapseFullPath(result.c_str());
|
2006-03-15 19:02:08 +03:00
|
|
|
result = this->GlobalGenerator->
|
|
|
|
ConvertToRelativePath(this->HomeOutputDirectoryComponents, result.c_str());
|
2005-05-13 17:54:30 +04:00
|
|
|
break;
|
|
|
|
case START_OUTPUT:
|
|
|
|
//result = cmSystemTools::CollapseFullPath(result.c_str());
|
2006-03-15 19:02:08 +03:00
|
|
|
result = this->GlobalGenerator->
|
|
|
|
ConvertToRelativePath(this->StartOutputDirectoryComponents, result.c_str());
|
2005-05-13 17:54:30 +04:00
|
|
|
break;
|
|
|
|
case FULL:
|
|
|
|
result = cmSystemTools::CollapseFullPath(result.c_str());
|
|
|
|
break;
|
2005-05-13 23:50:42 +04:00
|
|
|
case NONE:
|
|
|
|
break;
|
2005-05-13 17:54:30 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-25 00:04:54 +03:00
|
|
|
// Now convert it to an output path.
|
2005-12-23 00:42:36 +03:00
|
|
|
if (output == MAKEFILE)
|
2005-05-13 17:54:30 +04:00
|
|
|
{
|
|
|
|
result = cmSystemTools::ConvertToOutputPath(result.c_str());
|
|
|
|
}
|
2005-12-23 00:42:36 +03:00
|
|
|
if( output == SHELL)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
// for shell commands if force unix is on, but this->WindowsShell
|
2005-12-23 00:42:36 +03:00
|
|
|
// is true, then turn off force unix paths for the output path
|
|
|
|
// so that the path is windows style and will work with windows
|
|
|
|
// cmd.exe.
|
|
|
|
bool forceOn = cmSystemTools::GetForceUnixPaths();
|
2006-03-15 19:02:08 +03:00
|
|
|
if(forceOn && this->WindowsShell)
|
2005-12-23 00:42:36 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::SetForceUnixPaths(false);
|
|
|
|
}
|
|
|
|
result = cmSystemTools::ConvertToOutputPath(result.c_str());
|
2006-03-15 19:02:08 +03:00
|
|
|
if(forceOn && this->WindowsShell)
|
2005-12-23 00:42:36 +03:00
|
|
|
{
|
|
|
|
cmSystemTools::SetForceUnixPaths(true);
|
|
|
|
}
|
|
|
|
}
|
2005-05-13 17:54:30 +04:00
|
|
|
return result;
|
2005-02-25 00:04:54 +03:00
|
|
|
}
|
2006-02-19 23:25:27 +03:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
cmLocalGenerator
|
|
|
|
::GenerateTargetInstallRules(
|
|
|
|
std::ostream& os, const char* config,
|
|
|
|
std::vector<std::string> const& configurationTypes)
|
|
|
|
{
|
|
|
|
// Convert the old-style install specification from each target to
|
|
|
|
// an install generator and run it.
|
2006-03-15 19:02:08 +03:00
|
|
|
cmTargets& tgts = this->Makefile->GetTargets();
|
2006-02-19 23:25:27 +03:00
|
|
|
for(cmTargets::iterator l = tgts.begin(); l != tgts.end(); ++l)
|
|
|
|
{
|
|
|
|
// Include the user-specified pre-install script for this target.
|
|
|
|
if(const char* preinstall = l->second.GetProperty("PRE_INSTALL_SCRIPT"))
|
|
|
|
{
|
|
|
|
cmInstallScriptGenerator g(preinstall);
|
|
|
|
g.Generate(os, config, configurationTypes);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Install this target if a destination is given.
|
|
|
|
if(l->second.GetInstallPath() != "")
|
|
|
|
{
|
|
|
|
// Compute the full install destination. Note that converting
|
|
|
|
// to unix slashes also removes any trailing slash.
|
|
|
|
std::string destination = "${CMAKE_INSTALL_PREFIX}";
|
|
|
|
destination += l->second.GetInstallPath();
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(destination);
|
|
|
|
|
|
|
|
// Generate the proper install generator for this target type.
|
|
|
|
switch(l->second.GetType())
|
|
|
|
{
|
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
|
|
|
{
|
|
|
|
// Use a target install generator.
|
|
|
|
cmInstallTargetGenerator g(l->second, destination.c_str(), false);
|
|
|
|
g.Generate(os, config, configurationTypes);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
{
|
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
|
|
// Special code to handle DLL. Install the import library
|
|
|
|
// to the normal destination and the DLL to the runtime
|
|
|
|
// destination.
|
|
|
|
cmInstallTargetGenerator g1(l->second, destination.c_str(), true);
|
|
|
|
g1.Generate(os, config, configurationTypes);
|
|
|
|
destination = "${CMAKE_INSTALL_PREFIX}";
|
|
|
|
destination += l->second.GetRuntimeInstallPath();
|
|
|
|
cmSystemTools::ConvertToUnixSlashes(destination);
|
|
|
|
cmInstallTargetGenerator g2(l->second, destination.c_str(), false);
|
|
|
|
g2.Generate(os, config, configurationTypes);
|
|
|
|
#else
|
|
|
|
// Use a target install generator.
|
|
|
|
cmInstallTargetGenerator g(l->second, destination.c_str(), false);
|
|
|
|
g.Generate(os, config, configurationTypes);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmTarget::INSTALL_FILES:
|
|
|
|
{
|
2006-02-20 02:47:13 +03:00
|
|
|
// Use a file install generator.
|
2006-03-04 02:44:32 +03:00
|
|
|
const char* no_permissions = "";
|
|
|
|
const char* no_rename = "";
|
2006-03-30 22:33:48 +04:00
|
|
|
const char* no_component = "";
|
2006-02-20 02:47:13 +03:00
|
|
|
cmInstallFilesGenerator g(l->second.GetSourceLists(),
|
2006-03-04 02:44:32 +03:00
|
|
|
destination.c_str(), false,
|
2006-03-30 22:33:48 +04:00
|
|
|
no_permissions, no_component, no_rename);
|
2006-02-20 02:47:13 +03:00
|
|
|
g.Generate(os, config, configurationTypes);
|
2006-02-19 23:25:27 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmTarget::INSTALL_PROGRAMS:
|
|
|
|
{
|
2006-02-20 02:47:13 +03:00
|
|
|
// Use a file install generator.
|
2006-03-04 02:44:32 +03:00
|
|
|
const char* no_permissions = "";
|
|
|
|
const char* no_rename = "";
|
2006-03-30 22:33:48 +04:00
|
|
|
const char* no_component = "";
|
2006-02-20 02:47:13 +03:00
|
|
|
cmInstallFilesGenerator g(l->second.GetSourceLists(),
|
2006-03-04 02:44:32 +03:00
|
|
|
destination.c_str(), true,
|
2006-03-30 22:33:48 +04:00
|
|
|
no_permissions, no_component, no_rename);
|
2006-02-20 02:47:13 +03:00
|
|
|
g.Generate(os, config, configurationTypes);
|
2006-02-19 23:25:27 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case cmTarget::UTILITY:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include the user-specified post-install script for this target.
|
|
|
|
if(const char* postinstall = l->second.GetProperty("POST_INSTALL_SCRIPT"))
|
|
|
|
{
|
|
|
|
cmInstallScriptGenerator g(postinstall);
|
|
|
|
g.Generate(os, config, configurationTypes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|