2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-09-04 23:23:56 +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.
|
2002-09-04 23:23:56 +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.
|
|
|
|
============================================================================*/
|
2002-09-04 23:23:56 +04:00
|
|
|
#include "cmLocalVisualStudio7Generator.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmCustomCommandGenerator.h"
|
|
|
|
#include "cmGeneratorTarget.h"
|
2016-04-29 16:40:20 +03:00
|
|
|
#include "cmGlobalVisualStudio7Generator.h"
|
2002-09-04 23:23:56 +04:00
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmSourceFile.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include "cmXMLParser.h"
|
2002-12-17 18:04:39 +03:00
|
|
|
#include "cmake.h"
|
2016-04-29 17:53:13 +03:00
|
|
|
#include <cm_expat.h>
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2008-01-22 17:13:04 +03:00
|
|
|
#include "cmComputeLinkInformation.h"
|
2007-11-09 20:05:03 +03:00
|
|
|
#include "cmGeneratedFileStream.h"
|
|
|
|
|
2006-05-23 23:27:41 +04:00
|
|
|
#include <ctype.h> // for isspace
|
|
|
|
|
2016-03-09 17:42:04 +03:00
|
|
|
static bool cmLVS7G_IsFAT(const char* dir);
|
2008-03-31 18:59:02 +04:00
|
|
|
|
2008-01-22 17:13:04 +03:00
|
|
|
class cmLocalVisualStudio7GeneratorInternals
|
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
cmLocalVisualStudio7GeneratorInternals(cmLocalVisualStudio7Generator* e)
|
|
|
|
: LocalGenerator(e)
|
|
|
|
{
|
|
|
|
}
|
2008-01-22 17:13:04 +03:00
|
|
|
typedef cmComputeLinkInformation::ItemVector ItemVector;
|
|
|
|
void OutputLibraries(std::ostream& fout, ItemVector const& libs);
|
2015-10-22 19:27:58 +03:00
|
|
|
void OutputObjects(std::ostream& fout, cmGeneratorTarget* t,
|
|
|
|
const char* isep = 0);
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2008-01-22 17:13:04 +03:00
|
|
|
private:
|
|
|
|
cmLocalVisualStudio7Generator* LocalGenerator;
|
|
|
|
};
|
|
|
|
|
2007-03-12 19:35:11 +03:00
|
|
|
extern cmVS7FlagTable cmLocalVisualStudio7GeneratorFlagTable[];
|
|
|
|
|
2014-08-07 23:20:49 +04:00
|
|
|
static void cmConvertToWindowsSlash(std::string& s)
|
|
|
|
{
|
|
|
|
std::string::size_type pos = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
while ((pos = s.find('/', pos)) != std::string::npos) {
|
2014-08-07 23:20:49 +04:00
|
|
|
s[pos] = '\\';
|
|
|
|
pos++;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-08-07 23:20:49 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmLocalVisualStudio7Generator::cmLocalVisualStudio7Generator(
|
|
|
|
cmGlobalGenerator* gg, cmMakefile* mf)
|
|
|
|
: cmLocalVisualStudioGenerator(gg, mf)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2008-01-22 17:13:04 +03:00
|
|
|
this->Internal = new cmLocalVisualStudio7GeneratorInternals(this);
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmLocalVisualStudio7Generator::~cmLocalVisualStudio7Generator()
|
|
|
|
{
|
2008-01-22 17:13:04 +03:00
|
|
|
delete this->Internal;
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2007-05-09 22:41:38 +04:00
|
|
|
void cmLocalVisualStudio7Generator::AddHelperCommands()
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2011-08-18 21:35:41 +04:00
|
|
|
// Now create GUIDs for targets
|
2015-10-18 18:06:14 +03:00
|
|
|
std::vector<cmGeneratorTarget*> tgts = this->GetGeneratorTargets();
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); ++l) {
|
|
|
|
if ((*l)->GetType() == cmState::INTERFACE_LIBRARY) {
|
2012-11-02 18:47:40 +04:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-10-18 18:06:14 +03:00
|
|
|
const char* path = (*l)->GetProperty("EXTERNAL_MSPROJECT");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (path) {
|
|
|
|
this->ReadAndStoreExternalGUID((*l)->GetName().c_str(), path);
|
2011-08-18 21:35:41 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-08-18 21:35:41 +04:00
|
|
|
|
2006-09-29 00:40:35 +04:00
|
|
|
this->FixGlobalTargets();
|
2007-05-09 22:41:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalVisualStudio7Generator::Generate()
|
|
|
|
{
|
2007-11-12 23:42:37 +03:00
|
|
|
this->WriteProjectFiles();
|
|
|
|
this->WriteStampFiles();
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2012-03-28 21:49:01 +04:00
|
|
|
void cmLocalVisualStudio7Generator::AddCMakeListsRules()
|
|
|
|
{
|
|
|
|
// Create the regeneration custom rule.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->Makefile->IsOn("CMAKE_SUPPRESS_REGENERATION")) {
|
2012-03-28 21:49:01 +04:00
|
|
|
// Create a rule to regenerate the build system when the target
|
|
|
|
// specification source changes.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSourceFile* sf = this->CreateVCProjBuildRule()) {
|
2012-03-28 21:49:01 +04:00
|
|
|
// Add the rule to targets that need it.
|
2015-10-18 18:06:14 +03:00
|
|
|
std::vector<cmGeneratorTarget*> tgts = this->GetGeneratorTargets();
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); ++l) {
|
|
|
|
if ((*l)->GetType() == cmState::GLOBAL_TARGET) {
|
2015-07-28 19:48:40 +03:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if ((*l)->GetName() != CMAKE_CHECK_BUILD_SYSTEM_TARGET) {
|
2015-10-18 18:06:14 +03:00
|
|
|
(*l)->AddSource(sf->GetFullPath());
|
2012-03-28 21:49:01 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-03-28 21:49:01 +04:00
|
|
|
}
|
|
|
|
|
2006-09-29 00:40:35 +04:00
|
|
|
void cmLocalVisualStudio7Generator::FixGlobalTargets()
|
2006-08-26 06:56:41 +04:00
|
|
|
{
|
|
|
|
// Visual Studio .NET 2003 Service Pack 1 will not run post-build
|
|
|
|
// commands for targets in which no sources are built. Add dummy
|
|
|
|
// rules to force these targets to build.
|
2015-10-18 18:06:14 +03:00
|
|
|
std::vector<cmGeneratorTarget*> tgts = this->GetGeneratorTargets();
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); l++) {
|
|
|
|
if ((*l)->GetType() == cmState::GLOBAL_TARGET) {
|
2006-08-26 06:56:41 +04:00
|
|
|
std::vector<std::string> no_depends;
|
|
|
|
cmCustomCommandLine force_command;
|
2008-01-14 00:36:20 +03:00
|
|
|
force_command.push_back("cd");
|
|
|
|
force_command.push_back(".");
|
2006-08-26 06:56:41 +04:00
|
|
|
cmCustomCommandLines force_commands;
|
|
|
|
force_commands.push_back(force_command);
|
2014-02-25 05:32:55 +04:00
|
|
|
std::string no_main_dependency = "";
|
2015-09-25 01:13:20 +03:00
|
|
|
std::string force = this->GetCurrentBinaryDirectory();
|
2006-08-26 06:56:41 +04:00
|
|
|
force += cmake::GetCMakeFilesDirectory();
|
|
|
|
force += "/";
|
2015-10-22 19:27:58 +03:00
|
|
|
force += (*l)->GetName();
|
2006-08-26 06:56:41 +04:00
|
|
|
force += "_force";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSourceFile* file = this->Makefile->AddCustomCommandToOutput(
|
|
|
|
force.c_str(), no_depends, no_main_dependency, force_commands, " ",
|
|
|
|
0, true)) {
|
2015-10-18 18:06:14 +03:00
|
|
|
(*l)->AddSource(file->GetFullPath());
|
2006-08-26 06:56:41 +04:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-08-26 06:56:41 +04:00
|
|
|
}
|
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// TODO
|
|
|
|
// for CommandLine= need to repleace quotes with "
|
|
|
|
// write out configurations
|
2007-11-12 23:42:37 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteProjectFiles()
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2002-09-04 23:23:56 +04:00
|
|
|
// If not an in source build, then create the output directory
|
2016-05-16 17:34:04 +03:00
|
|
|
if (strcmp(this->GetCurrentBinaryDirectory(), this->GetSourceDirectory()) !=
|
|
|
|
0) {
|
|
|
|
if (!cmSystemTools::MakeDirectory(this->GetCurrentBinaryDirectory())) {
|
2002-09-04 23:23:56 +04:00
|
|
|
cmSystemTools::Error("Error creating directory ",
|
2015-09-25 01:13:20 +03:00
|
|
|
this->GetCurrentBinaryDirectory());
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2007-11-12 23:42:37 +03:00
|
|
|
// Get the set of targets in this directory.
|
2015-10-18 18:06:14 +03:00
|
|
|
std::vector<cmGeneratorTarget*> tgts = this->GetGeneratorTargets();
|
2007-11-12 23:42:37 +03:00
|
|
|
|
|
|
|
// Create the project file for each target.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator l = tgts.begin();
|
|
|
|
l != tgts.end(); l++) {
|
|
|
|
if ((*l)->GetType() == cmState::INTERFACE_LIBRARY) {
|
2012-11-02 18:47:40 +04:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
// INCLUDE_EXTERNAL_MSPROJECT command only affects the workspace
|
|
|
|
// so don't build a projectfile for it
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!(*l)->GetProperty("EXTERNAL_MSPROJECT")) {
|
2015-10-22 19:27:58 +03:00
|
|
|
this->CreateSingleVCProj((*l)->GetName().c_str(), *l);
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2007-11-12 23:42:37 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteStampFiles()
|
|
|
|
{
|
|
|
|
// Touch a timestamp file used to determine when the project file is
|
|
|
|
// out of date.
|
2015-09-25 01:13:20 +03:00
|
|
|
std::string stampName = this->GetCurrentBinaryDirectory();
|
2007-11-12 23:42:37 +03:00
|
|
|
stampName += cmake::GetCMakeFilesDirectory();
|
|
|
|
cmSystemTools::MakeDirectory(stampName.c_str());
|
|
|
|
stampName += "/";
|
|
|
|
stampName += "generate.stamp";
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ofstream stamp(stampName.c_str());
|
2013-05-01 12:30:46 +04:00
|
|
|
stamp << "# CMake generation timestamp file for this directory.\n";
|
2007-11-12 23:42:37 +03:00
|
|
|
|
|
|
|
// Create a helper file so CMake can determine when it is run
|
|
|
|
// through the rule created by CreateVCProjBuildRule whether it
|
|
|
|
// really needs to regenerate the project. This file lists its own
|
|
|
|
// dependencies. If any file listed in it is newer than itself then
|
|
|
|
// CMake must rerun. Otherwise the project files are up to date and
|
|
|
|
// the stamp file can just be touched.
|
|
|
|
std::string depName = stampName;
|
|
|
|
depName += ".depend";
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ofstream depFile(depName.c_str());
|
2007-11-12 23:42:37 +03:00
|
|
|
depFile << "# CMake generation dependency list for this directory.\n";
|
|
|
|
std::vector<std::string> const& listFiles = this->Makefile->GetListFiles();
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator lf = listFiles.begin();
|
|
|
|
lf != listFiles.end(); ++lf) {
|
2007-11-12 23:42:37 +03:00
|
|
|
depFile << *lf << std::endl;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-11-12 23:42:37 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7Generator::CreateSingleVCProj(
|
|
|
|
const std::string& lname, cmGeneratorTarget* target)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
cmGlobalVisualStudioGenerator* gg =
|
|
|
|
static_cast<cmGlobalVisualStudioGenerator*>(this->GlobalGenerator);
|
2015-10-23 19:26:43 +03:00
|
|
|
this->FortranProject = gg->TargetIsFortranOnly(target);
|
2015-05-17 12:33:09 +03:00
|
|
|
this->WindowsCEProject = gg->TargetsWindowsCE();
|
2011-12-14 01:19:14 +04:00
|
|
|
|
|
|
|
// Intel Fortran for VS10 uses VS9 format ".vfproj" files.
|
2015-05-17 12:33:09 +03:00
|
|
|
cmGlobalVisualStudioGenerator::VSVersion realVersion = gg->GetVersion();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject &&
|
|
|
|
gg->GetVersion() >= cmGlobalVisualStudioGenerator::VS10) {
|
2015-05-17 12:33:09 +03:00
|
|
|
gg->SetVersion(cmGlobalVisualStudioGenerator::VS9);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-12-14 01:19:14 +04:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// add to the list of projects
|
2016-05-16 17:34:04 +03:00
|
|
|
target->Target->SetProperty("GENERATOR_FILE_NAME", lname.c_str());
|
2002-09-04 23:23:56 +04:00
|
|
|
// create the dsp.cmake file
|
|
|
|
std::string fname;
|
2015-09-25 01:13:20 +03:00
|
|
|
fname = this->GetCurrentBinaryDirectory();
|
2002-09-04 23:23:56 +04:00
|
|
|
fname += "/";
|
|
|
|
fname += lname;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
fname += ".vfproj";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2008-04-30 21:26:04 +04:00
|
|
|
fname += ".vcproj";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-11-09 20:05:03 +03:00
|
|
|
|
|
|
|
// Generate the project file and replace it atomically with
|
|
|
|
// copy-if-different. We use a separate timestamp so that the IDE
|
|
|
|
// does not reload project files unnecessarily.
|
|
|
|
cmGeneratedFileStream fout(fname.c_str());
|
|
|
|
fout.SetCopyIfDifferent(true);
|
2016-05-16 17:34:04 +03:00
|
|
|
this->WriteVCProjFile(fout, lname, target);
|
|
|
|
if (fout.Close()) {
|
2007-11-16 15:01:58 +03:00
|
|
|
this->GlobalGenerator->FileReplacedDuringGenerate(fname);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-12-14 01:19:14 +04:00
|
|
|
|
2015-05-17 12:33:09 +03:00
|
|
|
gg->SetVersion(realVersion);
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2007-11-12 23:42:37 +03:00
|
|
|
cmSourceFile* cmLocalVisualStudio7Generator::CreateVCProjBuildRule()
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2015-09-25 01:13:20 +03:00
|
|
|
std::string stampName = this->GetCurrentBinaryDirectory();
|
2010-06-24 00:39:28 +04:00
|
|
|
stampName += "/";
|
|
|
|
stampName += cmake::GetCMakeFilesDirectoryPostSlash();
|
2007-11-12 23:42:37 +03:00
|
|
|
stampName += "generate.stamp";
|
2005-02-22 18:32:44 +03:00
|
|
|
cmCustomCommandLine commandLine;
|
2015-05-20 16:10:52 +03:00
|
|
|
commandLine.push_back(cmSystemTools::GetCMakeCommand());
|
2015-10-07 20:25:29 +03:00
|
|
|
std::string makefileIn = this->GetCurrentSourceDirectory();
|
2003-06-03 18:30:23 +04:00
|
|
|
makefileIn += "/";
|
|
|
|
makefileIn += "CMakeLists.txt";
|
2006-07-24 19:27:07 +04:00
|
|
|
makefileIn = cmSystemTools::CollapseFullPath(makefileIn.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::FileExists(makefileIn.c_str())) {
|
2009-09-03 00:07:12 +04:00
|
|
|
return 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-04-11 19:06:19 +04:00
|
|
|
std::string comment = "Building Custom Rule ";
|
|
|
|
comment += makefileIn;
|
2003-06-03 18:30:23 +04:00
|
|
|
std::string args;
|
|
|
|
args = "-H";
|
2015-10-07 02:17:48 +03:00
|
|
|
args += this->GetSourceDirectory();
|
2005-02-22 18:32:44 +03:00
|
|
|
commandLine.push_back(args);
|
2003-06-03 18:30:23 +04:00
|
|
|
args = "-B";
|
2015-10-07 02:17:48 +03:00
|
|
|
args += this->GetBinaryDirectory();
|
2005-02-22 18:32:44 +03:00
|
|
|
commandLine.push_back(args);
|
2007-11-10 16:15:13 +03:00
|
|
|
commandLine.push_back("--check-stamp-file");
|
2016-05-20 00:11:40 +03:00
|
|
|
std::string stampFilename = this->Convert(
|
|
|
|
stampName.c_str(), cmOutputConverter::FULL, cmOutputConverter::SHELL);
|
2010-04-02 22:09:06 +04:00
|
|
|
commandLine.push_back(stampFilename.c_str());
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2007-11-09 23:08:56 +03:00
|
|
|
std::vector<std::string> const& listFiles = this->Makefile->GetListFiles();
|
2005-02-22 18:32:44 +03:00
|
|
|
|
|
|
|
cmCustomCommandLines commandLines;
|
|
|
|
commandLines.push_back(commandLine);
|
2006-02-08 18:58:36 +03:00
|
|
|
const char* no_working_directory = 0;
|
2016-05-20 00:11:40 +03:00
|
|
|
std::string fullpathStampName = this->Convert(
|
|
|
|
stampName.c_str(), cmOutputConverter::FULL, cmOutputConverter::UNCHANGED);
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->AddCustomCommandToOutput(
|
|
|
|
fullpathStampName.c_str(), listFiles, makefileIn.c_str(), commandLines,
|
|
|
|
comment.c_str(), no_working_directory, true);
|
|
|
|
if (cmSourceFile* file = this->Makefile->GetSource(makefileIn.c_str())) {
|
2007-11-12 23:42:37 +03:00
|
|
|
return file;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2006-02-15 00:32:20 +03:00
|
|
|
cmSystemTools::Error("Error adding rule for ", makefileIn.c_str());
|
2007-11-12 23:42:37 +03:00
|
|
|
return 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2015-05-20 20:55:21 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteConfigurations(
|
2016-05-16 17:34:04 +03:00
|
|
|
std::ostream& fout, std::vector<std::string> const& configs,
|
|
|
|
const std::string& libName, cmGeneratorTarget* target)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
|
|
|
fout << "\t<Configurations>\n";
|
2015-05-20 20:55:21 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = configs.begin();
|
2016-05-16 17:34:04 +03:00
|
|
|
i != configs.end(); ++i) {
|
2002-09-04 23:23:56 +04:00
|
|
|
this->WriteConfiguration(fout, i->c_str(), libName, target);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\t</Configurations>\n";
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
cmVS7FlagTable cmLocalVisualStudio7GeneratorFortranFlagTable[] = {
|
|
|
|
{ "Preprocess", "fpp", "Run Preprocessor on files", "preprocessYes", 0 },
|
|
|
|
{ "SuppressStartupBanner", "nologo", "SuppressStartupBanner", "true", 0 },
|
|
|
|
{ "SourceFileFormat", "fixed", "Use Fixed Format", "fileFormatFixed", 0 },
|
|
|
|
{ "SourceFileFormat", "free", "Use Free Format", "fileFormatFree", 0 },
|
|
|
|
{ "DebugInformationFormat", "Zi", "full debug", "debugEnabled", 0 },
|
|
|
|
{ "DebugInformationFormat", "debug:full", "full debug", "debugEnabled", 0 },
|
|
|
|
{ "DebugInformationFormat", "Z7", "c7 compat", "debugOldStyleInfo", 0 },
|
|
|
|
{ "DebugInformationFormat", "Zd", "line numbers", "debugLineInfoOnly", 0 },
|
|
|
|
{ "Optimization", "Od", "disable optimization", "optimizeDisabled", 0 },
|
|
|
|
{ "Optimization", "O1", "min space", "optimizeMinSpace", 0 },
|
|
|
|
{ "Optimization", "O3", "full optimize", "optimizeFull", 0 },
|
|
|
|
{ "GlobalOptimizations", "Og", "global optimize", "true", 0 },
|
|
|
|
{ "InlineFunctionExpansion", "Ob0", "", "expandDisable", 0 },
|
|
|
|
{ "InlineFunctionExpansion", "Ob1", "", "expandOnlyInline", 0 },
|
|
|
|
{ "FavorSizeOrSpeed", "Os", "", "favorSize", 0 },
|
|
|
|
{ "OmitFramePointers", "Oy-", "", "false", 0 },
|
|
|
|
{ "OptimizeForProcessor", "GB", "", "procOptimizeBlended", 0 },
|
|
|
|
{ "OptimizeForProcessor", "G5", "", "procOptimizePentium", 0 },
|
|
|
|
{ "OptimizeForProcessor", "G6", "", "procOptimizePentiumProThruIII", 0 },
|
|
|
|
{ "UseProcessorExtensions", "QzxK", "", "codeForStreamingSIMD", 0 },
|
|
|
|
{ "OptimizeForProcessor", "QaxN", "", "codeForPentium4", 0 },
|
|
|
|
{ "OptimizeForProcessor", "QaxB", "", "codeForPentiumM", 0 },
|
|
|
|
{ "OptimizeForProcessor", "QaxP", "", "codeForCodeNamedPrescott", 0 },
|
|
|
|
{ "OptimizeForProcessor", "QaxT", "", "codeForCore2Duo", 0 },
|
|
|
|
{ "OptimizeForProcessor", "QxK", "", "codeExclusivelyStreamingSIMD", 0 },
|
|
|
|
{ "OptimizeForProcessor", "QxN", "", "codeExclusivelyPentium4", 0 },
|
|
|
|
{ "OptimizeForProcessor", "QxB", "", "codeExclusivelyPentiumM", 0 },
|
|
|
|
{ "OptimizeForProcessor", "QxP", "", "codeExclusivelyCodeNamedPrescott", 0 },
|
|
|
|
{ "OptimizeForProcessor", "QxT", "", "codeExclusivelyCore2Duo", 0 },
|
|
|
|
{ "OptimizeForProcessor", "QxO", "", "codeExclusivelyCore2StreamingSIMD",
|
|
|
|
0 },
|
|
|
|
{ "OptimizeForProcessor", "QxS", "", "codeExclusivelyCore2StreamingSIMD4",
|
|
|
|
0 },
|
|
|
|
{ "OpenMP", "Qopenmp", "", "OpenMPParallelCode", 0 },
|
|
|
|
{ "OpenMP", "Qopenmp-stubs", "", "OpenMPSequentialCode", 0 },
|
|
|
|
{ "Traceback", "traceback", "", "true", 0 },
|
|
|
|
{ "Traceback", "notraceback", "", "false", 0 },
|
|
|
|
{ "FloatingPointExceptionHandling", "fpe:0", "", "fpe0", 0 },
|
|
|
|
{ "FloatingPointExceptionHandling", "fpe:1", "", "fpe1", 0 },
|
|
|
|
{ "FloatingPointExceptionHandling", "fpe:3", "", "fpe3", 0 },
|
|
|
|
|
|
|
|
{ "MultiProcessorCompilation", "MP", "", "true",
|
|
|
|
cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue },
|
|
|
|
{ "ProcessorNumber", "MP", "Multi-processor Compilation", "",
|
|
|
|
cmVS7FlagTable::UserValueRequired },
|
|
|
|
|
|
|
|
{ "ModulePath", "module:", "", "", cmVS7FlagTable::UserValueRequired },
|
|
|
|
{ "LoopUnrolling", "Qunroll:", "", "", cmVS7FlagTable::UserValueRequired },
|
|
|
|
{ "AutoParallelThreshold", "Qpar-threshold:", "", "",
|
|
|
|
cmVS7FlagTable::UserValueRequired },
|
|
|
|
{ "HeapArrays", "heap-arrays:", "", "", cmVS7FlagTable::UserValueRequired },
|
|
|
|
{ "ObjectText", "bintext:", "", "", cmVS7FlagTable::UserValueRequired },
|
|
|
|
{ "Parallelization", "Qparallel", "", "true", 0 },
|
|
|
|
{ "PrefetchInsertion", "Qprefetch-", "", "false", 0 },
|
|
|
|
{ "BufferedIO", "assume:buffered_io", "", "true", 0 },
|
|
|
|
{ "CallingConvention", "iface:stdcall", "", "callConventionStdCall", 0 },
|
|
|
|
{ "CallingConvention", "iface:cref", "", "callConventionCRef", 0 },
|
|
|
|
{ "CallingConvention", "iface:stdref", "", "callConventionStdRef", 0 },
|
|
|
|
{ "CallingConvention", "iface:stdcall", "", "callConventionStdCall", 0 },
|
|
|
|
{ "CallingConvention", "iface:cvf", "", "callConventionCVF", 0 },
|
|
|
|
{ "EnableRecursion", "recursive", "", "true", 0 },
|
|
|
|
{ "ReentrantCode", "reentrancy", "", "true", 0 },
|
2008-04-30 21:26:04 +04:00
|
|
|
// done up to Language
|
2016-05-16 17:34:04 +03:00
|
|
|
{ 0, 0, 0, 0, 0 }
|
2008-04-30 21:26:04 +04:00
|
|
|
};
|
2006-05-12 19:56:09 +04:00
|
|
|
// fill the table here currently the comment field is not used for
|
|
|
|
// anything other than documentation NOTE: Make sure the longer
|
|
|
|
// commandFlag comes FIRST!
|
2016-05-16 17:34:04 +03:00
|
|
|
cmVS7FlagTable cmLocalVisualStudio7GeneratorFlagTable[] = {
|
2006-03-10 21:06:26 +03:00
|
|
|
// option flags (some flags map to the same option)
|
2016-05-16 17:34:04 +03:00
|
|
|
{ "BasicRuntimeChecks", "GZ", "Stack frame checks", "1", 0 },
|
|
|
|
{ "BasicRuntimeChecks", "RTCsu", "Both stack and uninitialized checks", "3",
|
|
|
|
0 },
|
|
|
|
{ "BasicRuntimeChecks", "RTCs", "Stack frame checks", "1", 0 },
|
|
|
|
{ "BasicRuntimeChecks", "RTCu", "Uninitialized Variables ", "2", 0 },
|
|
|
|
{ "BasicRuntimeChecks", "RTC1", "Both stack and uninitialized checks", "3",
|
|
|
|
0 },
|
|
|
|
{ "DebugInformationFormat", "Z7", "debug format", "1", 0 },
|
|
|
|
{ "DebugInformationFormat", "Zd", "debug format", "2", 0 },
|
|
|
|
{ "DebugInformationFormat", "Zi", "debug format", "3", 0 },
|
|
|
|
{ "DebugInformationFormat", "ZI", "debug format", "4", 0 },
|
|
|
|
{ "EnableEnhancedInstructionSet", "arch:SSE2", "Use sse2 instructions", "2",
|
|
|
|
0 },
|
|
|
|
{ "EnableEnhancedInstructionSet", "arch:SSE", "Use sse instructions", "1",
|
|
|
|
0 },
|
|
|
|
{ "FloatingPointModel", "fp:precise", "Use precise floating point model",
|
|
|
|
"0", 0 },
|
|
|
|
{ "FloatingPointModel", "fp:strict", "Use strict floating point model", "1",
|
|
|
|
0 },
|
|
|
|
{ "FloatingPointModel", "fp:fast", "Use fast floating point model", "2", 0 },
|
|
|
|
{ "FavorSizeOrSpeed", "Ot", "Favor fast code", "1", 0 },
|
|
|
|
{ "FavorSizeOrSpeed", "Os", "Favor small code", "2", 0 },
|
|
|
|
{ "CompileAs", "TC", "Compile as c code", "1", 0 },
|
|
|
|
{ "CompileAs", "TP", "Compile as c++ code", "2", 0 },
|
|
|
|
{ "Optimization", "Od", "Non Debug", "0", 0 },
|
|
|
|
{ "Optimization", "O1", "Min Size", "1", 0 },
|
|
|
|
{ "Optimization", "O2", "Max Speed", "2", 0 },
|
|
|
|
{ "Optimization", "Ox", "Max Optimization", "3", 0 },
|
|
|
|
{ "OptimizeForProcessor", "GB", "Blended processor mode", "0", 0 },
|
|
|
|
{ "OptimizeForProcessor", "G5", "Pentium", "1", 0 },
|
|
|
|
{ "OptimizeForProcessor", "G6", "PPro PII PIII", "2", 0 },
|
|
|
|
{ "OptimizeForProcessor", "G7", "Pentium 4 or Athlon", "3", 0 },
|
|
|
|
{ "InlineFunctionExpansion", "Ob0", "no inlines", "0", 0 },
|
|
|
|
{ "InlineFunctionExpansion", "Ob1", "when inline keyword", "1", 0 },
|
|
|
|
{ "InlineFunctionExpansion", "Ob2", "any time you can inline", "2", 0 },
|
|
|
|
{ "RuntimeLibrary", "MTd", "Multithreaded debug", "1", 0 },
|
|
|
|
{ "RuntimeLibrary", "MT", "Multithreaded", "0", 0 },
|
|
|
|
{ "RuntimeLibrary", "MDd", "Multithreaded dll debug", "3", 0 },
|
|
|
|
{ "RuntimeLibrary", "MD", "Multithreaded dll", "2", 0 },
|
|
|
|
{ "RuntimeLibrary", "MLd", "Single Thread debug", "5", 0 },
|
|
|
|
{ "RuntimeLibrary", "ML", "Single Thread", "4", 0 },
|
|
|
|
{ "StructMemberAlignment", "Zp16", "struct align 16 byte ", "5", 0 },
|
|
|
|
{ "StructMemberAlignment", "Zp1", "struct align 1 byte ", "1", 0 },
|
|
|
|
{ "StructMemberAlignment", "Zp2", "struct align 2 byte ", "2", 0 },
|
|
|
|
{ "StructMemberAlignment", "Zp4", "struct align 4 byte ", "3", 0 },
|
|
|
|
{ "StructMemberAlignment", "Zp8", "struct align 8 byte ", "4", 0 },
|
|
|
|
{ "WarningLevel", "W0", "Warning level", "0", 0 },
|
|
|
|
{ "WarningLevel", "W1", "Warning level", "1", 0 },
|
|
|
|
{ "WarningLevel", "W2", "Warning level", "2", 0 },
|
|
|
|
{ "WarningLevel", "W3", "Warning level", "3", 0 },
|
|
|
|
{ "WarningLevel", "W4", "Warning level", "4", 0 },
|
|
|
|
{ "DisableSpecificWarnings", "wd", "Disable specific warnings", "",
|
|
|
|
cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
|
2007-02-01 23:02:35 +03:00
|
|
|
|
|
|
|
// Precompiled header and related options. Note that the
|
|
|
|
// UsePrecompiledHeader entries are marked as "Continue" so that the
|
|
|
|
// corresponding PrecompiledHeaderThrough entry can be found.
|
2016-05-16 17:34:04 +03:00
|
|
|
{ "UsePrecompiledHeader", "Yc", "Create Precompiled Header", "1",
|
|
|
|
cmVS7FlagTable::UserValueIgnored | cmVS7FlagTable::Continue },
|
|
|
|
{ "PrecompiledHeaderThrough", "Yc", "Precompiled Header Name", "",
|
|
|
|
cmVS7FlagTable::UserValueRequired },
|
|
|
|
{ "PrecompiledHeaderFile", "Fp", "Generated Precompiled Header", "",
|
|
|
|
cmVS7FlagTable::UserValue },
|
2007-03-12 19:35:11 +03:00
|
|
|
// The YX and Yu options are in a per-global-generator table because
|
|
|
|
// their values differ based on the VS IDE version.
|
2016-05-16 17:34:04 +03:00
|
|
|
{ "ForcedIncludeFiles", "FI", "Forced include files", "",
|
|
|
|
cmVS7FlagTable::UserValueRequired | cmVS7FlagTable::SemicolonAppendable },
|
2004-07-15 22:38:50 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
{ "AssemblerListingLocation", "Fa", "ASM List Location", "",
|
|
|
|
cmVS7FlagTable::UserValue },
|
|
|
|
{ "ProgramDataBaseFileName", "Fd", "Program Database File Name", "",
|
|
|
|
cmVS7FlagTable::UserValue },
|
2013-05-17 16:21:43 +04:00
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
// boolean flags
|
2016-05-16 17:34:04 +03:00
|
|
|
{ "BufferSecurityCheck", "GS", "Buffer security check", "true", 0 },
|
|
|
|
{ "BufferSecurityCheck", "GS-", "Turn off Buffer security check", "false",
|
|
|
|
0 },
|
|
|
|
{ "Detect64BitPortabilityProblems", "Wp64",
|
|
|
|
"Detect 64-bit Portability Problems", "true", 0 },
|
|
|
|
{ "EnableFiberSafeOptimizations", "GT", "Enable Fiber-safe Optimizations",
|
|
|
|
"true", 0 },
|
|
|
|
{ "EnableFunctionLevelLinking", "Gy", "EnableFunctionLevelLinking", "true",
|
|
|
|
0 },
|
|
|
|
{ "EnableIntrinsicFunctions", "Oi", "EnableIntrinsicFunctions", "true", 0 },
|
|
|
|
{ "GlobalOptimizations", "Og", "Global Optimize", "true", 0 },
|
|
|
|
{ "ImproveFloatingPointConsistency", "Op", "ImproveFloatingPointConsistency",
|
|
|
|
"true", 0 },
|
|
|
|
{ "MinimalRebuild", "Gm", "minimal rebuild", "true", 0 },
|
|
|
|
{ "OmitFramePointers", "Oy", "OmitFramePointers", "true", 0 },
|
|
|
|
{ "OptimizeForWindowsApplication", "GA", "Optimize for windows", "true", 0 },
|
|
|
|
{ "RuntimeTypeInfo", "GR", "Turn on Run time type information for c++",
|
|
|
|
"true", 0 },
|
|
|
|
{ "RuntimeTypeInfo", "GR-", "Turn off Run time type information for c++",
|
|
|
|
"false", 0 },
|
|
|
|
{ "SmallerTypeCheck", "RTCc", "smaller type check", "true", 0 },
|
|
|
|
{ "SuppressStartupBanner", "nologo", "SuppressStartupBanner", "true", 0 },
|
|
|
|
{ "WholeProgramOptimization", "GL", "Enables whole program optimization",
|
|
|
|
"true", 0 },
|
|
|
|
{ "WholeProgramOptimization", "GL-", "Disables whole program optimization",
|
|
|
|
"false", 0 },
|
|
|
|
{ "WarnAsError", "WX", "Treat warnings as errors", "true", 0 },
|
|
|
|
{ "BrowseInformation", "FR", "Generate browse information", "1", 0 },
|
|
|
|
{ "StringPooling", "GF", "Enable StringPooling", "true", 0 },
|
|
|
|
{ 0, 0, 0, 0, 0 }
|
2004-07-15 00:10:18 +04:00
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmVS7FlagTable cmLocalVisualStudio7GeneratorLinkFlagTable[] = {
|
2006-03-10 21:06:26 +03:00
|
|
|
// option flags (some flags map to the same option)
|
2016-05-16 17:34:04 +03:00
|
|
|
{ "GenerateManifest", "MANIFEST:NO", "disable manifest generation", "false",
|
|
|
|
0 },
|
|
|
|
{ "GenerateManifest", "MANIFEST", "enable manifest generation", "true", 0 },
|
|
|
|
{ "LinkIncremental", "INCREMENTAL:NO", "link incremental", "1", 0 },
|
|
|
|
{ "LinkIncremental", "INCREMENTAL:YES", "link incremental", "2", 0 },
|
|
|
|
{ "CLRUnmanagedCodeCheck", "CLRUNMANAGEDCODECHECK:NO", "", "false", 0 },
|
|
|
|
{ "CLRUnmanagedCodeCheck", "CLRUNMANAGEDCODECHECK", "", "true", 0 },
|
|
|
|
{ "DataExecutionPrevention", "NXCOMPAT:NO",
|
|
|
|
"Not known to work with Windows Data Execution Prevention", "1", 0 },
|
|
|
|
{ "DataExecutionPrevention", "NXCOMPAT",
|
|
|
|
"Known to work with Windows Data Execution Prevention", "2", 0 },
|
|
|
|
{ "DelaySign", "DELAYSIGN:NO", "", "false", 0 },
|
|
|
|
{ "DelaySign", "DELAYSIGN", "", "true", 0 },
|
|
|
|
{ "EntryPointSymbol", "ENTRY:", "sets the starting address", "",
|
|
|
|
cmVS7FlagTable::UserValue },
|
|
|
|
{ "IgnoreDefaultLibraryNames", "NODEFAULTLIB:", "default libs to ignore", "",
|
|
|
|
cmVS7FlagTable::UserValue | cmVS7FlagTable::SemicolonAppendable },
|
|
|
|
{ "IgnoreAllDefaultLibraries", "NODEFAULTLIB", "ignore all default libs",
|
|
|
|
"true", 0 },
|
|
|
|
{ "FixedBaseAddress", "FIXED:NO", "Generate a relocation section", "1", 0 },
|
|
|
|
{ "FixedBaseAddress", "FIXED", "Image must be loaded at a fixed address",
|
|
|
|
"2", 0 },
|
|
|
|
{ "EnableCOMDATFolding", "OPT:NOICF", "Do not remove redundant COMDATs", "1",
|
|
|
|
0 },
|
|
|
|
{ "EnableCOMDATFolding", "OPT:ICF", "Remove redundant COMDATs", "2", 0 },
|
|
|
|
{ "ResourceOnlyDLL", "NOENTRY", "Create DLL with no entry point", "true",
|
|
|
|
0 },
|
|
|
|
{ "OptimizeReferences", "OPT:NOREF", "Keep unreferenced data", "1", 0 },
|
|
|
|
{ "OptimizeReferences", "OPT:REF", "Eliminate unreferenced data", "2", 0 },
|
|
|
|
{ "Profile", "PROFILE", "", "true", 0 },
|
|
|
|
{ "RandomizedBaseAddress", "DYNAMICBASE:NO",
|
|
|
|
"Image may not be rebased at load-time", "1", 0 },
|
|
|
|
{ "RandomizedBaseAddress", "DYNAMICBASE",
|
|
|
|
"Image may be rebased at load-time", "2", 0 },
|
|
|
|
{ "SetChecksum", "RELEASE", "Enable setting checksum in header", "true", 0 },
|
|
|
|
{ "SupportUnloadOfDelayLoadedDLL", "DELAY:UNLOAD", "", "true", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:I386", "Machine x86", "1", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:X86", "Machine x86", "1", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:AM33", "Machine AM33", "2", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:ARM", "Machine ARM", "3", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:EBC", "Machine EBC", "4", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:IA64", "Machine IA64", "5", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:M32R", "Machine M32R", "6", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:MIPS", "Machine MIPS", "7", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:MIPS16", "Machine MIPS16", "8", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:MIPSFPU)", "Machine MIPSFPU", "9", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:MIPSFPU16", "Machine MIPSFPU16", "10", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:MIPSR41XX", "Machine MIPSR41XX", "11", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:SH3", "Machine SH3", "12", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:SH3DSP", "Machine SH3DSP", "13", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:SH4", "Machine SH4", "14", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:SH5", "Machine SH5", "15", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:THUMB", "Machine THUMB", "16", 0 },
|
|
|
|
{ "TargetMachine", "MACHINE:X64", "Machine x64", "17", 0 },
|
|
|
|
{ "TurnOffAssemblyGeneration", "NOASSEMBLY",
|
|
|
|
"No assembly even if CLR information is present in objects.", "true", 0 },
|
|
|
|
{ "ModuleDefinitionFile", "DEF:", "add an export def file", "",
|
|
|
|
cmVS7FlagTable::UserValue },
|
|
|
|
{ "GenerateMapFile", "MAP", "enable generation of map file", "true", 0 },
|
|
|
|
{ 0, 0, 0, 0, 0 }
|
2005-02-11 22:20:51 +03:00
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmVS7FlagTable cmLocalVisualStudio7GeneratorFortranLinkFlagTable[] = {
|
|
|
|
{ "LinkIncremental", "INCREMENTAL:NO", "link incremental",
|
|
|
|
"linkIncrementalNo", 0 },
|
|
|
|
{ "LinkIncremental", "INCREMENTAL:YES", "link incremental",
|
|
|
|
"linkIncrementalYes", 0 },
|
|
|
|
{ 0, 0, 0, 0, 0 }
|
2014-11-14 21:47:00 +03:00
|
|
|
};
|
|
|
|
|
2009-06-12 23:28:48 +04:00
|
|
|
// Helper class to write build event <Tool .../> elements.
|
|
|
|
class cmLocalVisualStudio7Generator::EventWriter
|
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
EventWriter(cmLocalVisualStudio7Generator* lg, const std::string& config,
|
|
|
|
std::ostream& os)
|
|
|
|
: LG(lg)
|
|
|
|
, Config(config)
|
|
|
|
, Stream(os)
|
|
|
|
, First(true)
|
|
|
|
{
|
|
|
|
}
|
2009-06-12 23:28:48 +04:00
|
|
|
void Start(const char* tool)
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
2009-06-12 23:28:48 +04:00
|
|
|
this->First = true;
|
|
|
|
this->Stream << "\t\t\t<Tool\n\t\t\t\tName=\"" << tool << "\"";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
void Finish() { this->Stream << (this->First ? "" : "\"") << "/>\n"; }
|
2009-06-12 23:28:48 +04:00
|
|
|
void Write(std::vector<cmCustomCommand> const& ccs)
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
for (std::vector<cmCustomCommand>::const_iterator ci = ccs.begin();
|
|
|
|
ci != ccs.end(); ++ci) {
|
2009-06-12 23:28:48 +04:00
|
|
|
this->Write(*ci);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-06-12 23:28:48 +04:00
|
|
|
void Write(cmCustomCommand const& cc)
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
2015-07-25 18:52:10 +03:00
|
|
|
cmCustomCommandGenerator ccg(cc, this->Config, this->LG);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->First) {
|
2014-03-10 23:47:19 +04:00
|
|
|
const char* comment = ccg.GetComment();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (comment && *comment) {
|
|
|
|
this->Stream << "\nDescription=\"" << this->LG->EscapeForXML(comment)
|
|
|
|
<< "\"";
|
|
|
|
}
|
2009-06-12 23:28:48 +04:00
|
|
|
this->Stream << "\nCommandLine=\"";
|
|
|
|
this->First = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2009-06-12 23:28:48 +04:00
|
|
|
this->Stream << this->LG->EscapeForXML("\n");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-03-10 23:47:19 +04:00
|
|
|
std::string script = this->LG->ConstructScript(ccg);
|
2009-06-12 23:28:48 +04:00
|
|
|
this->Stream << this->LG->EscapeForXML(script.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
|
2009-06-12 23:28:48 +04:00
|
|
|
private:
|
|
|
|
cmLocalVisualStudio7Generator* LG;
|
2014-02-10 07:48:34 +04:00
|
|
|
std::string Config;
|
2009-06-12 23:28:48 +04:00
|
|
|
std::ostream& Stream;
|
|
|
|
bool First;
|
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteConfiguration(
|
|
|
|
std::ostream& fout, const std::string& configName,
|
|
|
|
const std::string& libName, cmGeneratorTarget* target)
|
2006-03-10 21:06:26 +03:00
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
const char* mfcFlag = this->Makefile->GetDefinition("CMAKE_MFC_FLAG");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!mfcFlag) {
|
2002-09-04 23:23:56 +04:00
|
|
|
mfcFlag = "0";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-07-18 00:58:34 +04:00
|
|
|
cmGlobalVisualStudio7Generator* gg =
|
|
|
|
static_cast<cmGlobalVisualStudio7Generator*>(this->GlobalGenerator);
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\t\t<Configuration\n"
|
2016-05-16 17:34:04 +03:00
|
|
|
<< "\t\t\tName=\"" << configName << "|" << gg->GetPlatformName()
|
|
|
|
<< "\"\n";
|
2002-09-04 23:23:56 +04:00
|
|
|
// This is an internal type to Visual Studio, it seems that:
|
|
|
|
// 4 == static library
|
|
|
|
// 2 == dll
|
|
|
|
// 1 == executable
|
2006-03-10 21:06:26 +03:00
|
|
|
// 10 == utility
|
2002-09-04 23:23:56 +04:00
|
|
|
const char* configType = "10";
|
2008-04-30 21:26:04 +04:00
|
|
|
const char* projectType = 0;
|
2009-07-03 18:33:34 +04:00
|
|
|
bool targetBuilds = true;
|
2015-08-04 20:19:49 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
switch (target->GetType()) {
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::OBJECT_LIBRARY:
|
2014-02-24 23:15:21 +04:00
|
|
|
targetBuilds = false; // no manifest tool for object library
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::STATIC_LIBRARY:
|
2008-04-30 21:26:04 +04:00
|
|
|
projectType = "typeStaticLibrary";
|
2002-09-04 23:23:56 +04:00
|
|
|
configType = "4";
|
|
|
|
break;
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::SHARED_LIBRARY:
|
|
|
|
case cmState::MODULE_LIBRARY:
|
2008-04-30 21:26:04 +04:00
|
|
|
projectType = "typeDynamicLibrary";
|
2002-09-04 23:23:56 +04:00
|
|
|
configType = "2";
|
|
|
|
break;
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::EXECUTABLE:
|
2002-09-04 23:23:56 +04:00
|
|
|
configType = "1";
|
2006-03-10 21:06:26 +03:00
|
|
|
break;
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::UTILITY:
|
|
|
|
case cmState::GLOBAL_TARGET:
|
2002-09-04 23:23:56 +04:00
|
|
|
configType = "10";
|
|
|
|
default:
|
2009-07-03 18:33:34 +04:00
|
|
|
targetBuilds = false;
|
2002-09-04 23:23:56 +04:00
|
|
|
break;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (this->FortranProject && projectType) {
|
2008-04-30 21:26:04 +04:00
|
|
|
configType = projectType;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-11-22 07:54:34 +03:00
|
|
|
std::string flags;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (strcmp(configType, "10") != 0) {
|
|
|
|
const std::string& linkLanguage =
|
|
|
|
(this->FortranProject ? std::string("Fortran")
|
|
|
|
: target->GetLinkerLanguage(configName));
|
|
|
|
if (linkLanguage.empty()) {
|
|
|
|
cmSystemTools::Error(
|
|
|
|
"CMake can not determine linker language for target: ",
|
|
|
|
target->GetName().c_str());
|
2004-10-27 18:53:01 +04:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (linkLanguage == "C" || linkLanguage == "CXX" ||
|
|
|
|
linkLanguage == "Fortran") {
|
2005-03-22 15:26:45 +03:00
|
|
|
std::string baseFlagVar = "CMAKE_";
|
|
|
|
baseFlagVar += linkLanguage;
|
|
|
|
baseFlagVar += "_FLAGS";
|
2006-03-15 19:02:08 +03:00
|
|
|
flags = this->Makefile->GetRequiredDefinition(baseFlagVar.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string flagVar =
|
|
|
|
baseFlagVar + std::string("_") + cmSystemTools::UpperCase(configName);
|
2006-02-21 20:19:32 +03:00
|
|
|
flags += " ";
|
2006-03-15 19:02:08 +03:00
|
|
|
flags += this->Makefile->GetRequiredDefinition(flagVar.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-05-04 21:35:56 +04:00
|
|
|
// set the correct language
|
2016-05-16 17:34:04 +03:00
|
|
|
if (linkLanguage == "C") {
|
2006-05-04 21:35:56 +04:00
|
|
|
flags += " /TC ";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (linkLanguage == "CXX") {
|
2006-05-04 21:35:56 +04:00
|
|
|
flags += " /TP ";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-06-27 20:04:02 +04:00
|
|
|
|
|
|
|
// Add the target-specific flags.
|
2015-10-22 19:27:58 +03:00
|
|
|
this->AddCompileOptions(flags, target, linkLanguage, configName);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2016-06-06 00:44:39 +03:00
|
|
|
switch (cmOutputConverter::GetFortranFormat(
|
|
|
|
target->GetProperty("Fortran_FORMAT"))) {
|
2016-05-20 00:11:40 +03:00
|
|
|
case cmOutputConverter::FortranFormatFixed:
|
2016-05-16 17:34:04 +03:00
|
|
|
flags += " -fixed";
|
|
|
|
break;
|
2016-05-20 00:11:40 +03:00
|
|
|
case cmOutputConverter::FortranFormatFree:
|
2016-05-16 17:34:04 +03:00
|
|
|
flags += " -free";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2011-08-31 18:24:43 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-08-31 18:24:43 +04:00
|
|
|
|
2007-02-01 19:49:27 +03:00
|
|
|
// Get preprocessor definitions for this directory.
|
|
|
|
std::string defineFlags = this->Makefile->GetDefineFlags();
|
2008-04-30 21:26:04 +04:00
|
|
|
Options::Tool t = Options::Compiler;
|
2009-07-28 22:30:15 +04:00
|
|
|
cmVS7FlagTable const* table = cmLocalVisualStudio7GeneratorFlagTable;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
t = Options::FortranCompiler;
|
2009-07-28 22:30:15 +04:00
|
|
|
table = cmLocalVisualStudio7GeneratorFortranFlagTable;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
Options targetOptions(this, t, table, gg->ExtraFlagTable);
|
2007-02-15 20:23:42 +03:00
|
|
|
targetOptions.FixExceptionHandlingDefault();
|
2014-02-10 07:48:34 +04:00
|
|
|
std::string asmLocation = configName + "/";
|
2013-05-17 16:21:43 +04:00
|
|
|
targetOptions.AddFlag("AssemblerListingLocation", asmLocation.c_str());
|
2007-02-01 19:49:27 +03:00
|
|
|
targetOptions.Parse(flags.c_str());
|
|
|
|
targetOptions.Parse(defineFlags.c_str());
|
2010-11-10 01:54:40 +03:00
|
|
|
targetOptions.ParseFinish();
|
2013-06-06 20:13:35 +04:00
|
|
|
std::vector<std::string> targetDefines;
|
2015-10-22 19:27:58 +03:00
|
|
|
target->GetCompileDefinitions(targetDefines, configName, "CXX");
|
2013-06-06 20:13:35 +04:00
|
|
|
targetOptions.AddDefines(targetDefines);
|
2007-02-01 19:49:27 +03:00
|
|
|
targetOptions.SetVerboseMakefile(
|
|
|
|
this->Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE"));
|
|
|
|
|
|
|
|
// Add a definition for the configuration name.
|
2007-05-09 18:18:31 +04:00
|
|
|
std::string configDefine = "CMAKE_INTDIR=\"";
|
2007-02-01 19:49:27 +03:00
|
|
|
configDefine += configName;
|
2007-05-09 18:18:31 +04:00
|
|
|
configDefine += "\"";
|
2007-02-01 19:49:27 +03:00
|
|
|
targetOptions.AddDefine(configDefine);
|
|
|
|
|
2007-03-28 07:13:25 +04:00
|
|
|
// Add the export symbol definition for shared library objects.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (const char* exportMacro = target->GetExportMacro()) {
|
2007-03-28 07:13:25 +04:00
|
|
|
targetOptions.AddDefine(exportMacro);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-02-01 19:49:27 +03:00
|
|
|
|
2005-07-27 21:36:36 +04:00
|
|
|
// The intermediate directory name consists of a directory for the
|
|
|
|
// target and a subdirectory for the configuration name.
|
2015-10-22 19:27:58 +03:00
|
|
|
std::string intermediateDir = this->GetTargetDirectory(target);
|
2005-07-27 21:36:36 +04:00
|
|
|
intermediateDir += "/";
|
|
|
|
intermediateDir += configName;
|
2015-02-16 19:13:43 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (target->GetType() < cmState::UTILITY) {
|
|
|
|
std::string const& outDir = target->GetType() == cmState::OBJECT_LIBRARY
|
|
|
|
? intermediateDir
|
|
|
|
: target->GetDirectory(configName);
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2015-02-16 19:13:43 +03:00
|
|
|
fout << "\t\t\tOutputDirectory=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(outDir.c_str()) << "\"\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-02-16 19:13:43 +03:00
|
|
|
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2005-07-27 21:36:36 +04:00
|
|
|
fout << "\t\t\tIntermediateDirectory=\""
|
|
|
|
<< this->ConvertToXMLOutputPath(intermediateDir.c_str())
|
|
|
|
<< "\"\n"
|
2003-10-16 18:10:49 +04:00
|
|
|
<< "\t\t\tConfigurationType=\"" << configType << "\"\n"
|
|
|
|
<< "\t\t\tUseOfMFC=\"" << mfcFlag << "\"\n"
|
2014-05-22 21:45:43 +04:00
|
|
|
<< "\t\t\tATLMinimizesCRunTimeLibraryUsage=\"false\"\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2007-02-01 19:49:27 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2014-09-29 18:12:43 +04:00
|
|
|
// Intel Fortran >= 15.0 uses TargetName property.
|
2015-10-22 19:27:58 +03:00
|
|
|
std::string targetNameFull = target->GetFullName(configName);
|
2014-09-29 18:12:43 +04:00
|
|
|
std::string targetName =
|
|
|
|
cmSystemTools::GetFilenameWithoutLastExtension(targetNameFull);
|
|
|
|
std::string targetExt =
|
|
|
|
cmSystemTools::GetFilenameLastExtension(targetNameFull);
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2014-09-29 18:12:43 +04:00
|
|
|
fout <<
|
|
|
|
"\t\t\tTargetName=\"" << this->EscapeForXML(targetName) << "\"\n"
|
|
|
|
"\t\t\tTargetExt=\"" << this->EscapeForXML(targetExt) << "\"\n"
|
|
|
|
;
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-09-29 18:12:43 +04:00
|
|
|
|
2007-02-01 19:49:27 +03:00
|
|
|
// If unicode is enabled change the character set to unicode, if not
|
|
|
|
// then default to MBCS.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (targetOptions.UsingUnicode()) {
|
2003-10-16 18:10:49 +04:00
|
|
|
fout << "\t\t\tCharacterSet=\"1\">\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (targetOptions.UsingSBCS()) {
|
2012-02-17 01:27:05 +04:00
|
|
|
fout << "\t\t\tCharacterSet=\"0\">\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2003-10-16 18:10:49 +04:00
|
|
|
fout << "\t\t\tCharacterSet=\"2\">\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-04-30 21:26:04 +04:00
|
|
|
const char* tool = "VCCLCompilerTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
tool = "VFFortranCompilerTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2003-10-16 18:10:49 +04:00
|
|
|
fout << "\t\t\t<Tool\n"
|
2008-04-30 21:26:04 +04:00
|
|
|
<< "\t\t\t\tName=\"" << tool << "\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
const char* target_mod_dir =
|
2015-10-25 01:49:31 +03:00
|
|
|
target->GetProperty("Fortran_MODULE_DIRECTORY");
|
2008-04-30 21:26:04 +04:00
|
|
|
std::string modDir;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (target_mod_dir) {
|
2016-05-20 00:11:40 +03:00
|
|
|
modDir = this->Convert(target_mod_dir, cmOutputConverter::START_OUTPUT,
|
|
|
|
cmOutputConverter::UNCHANGED);
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2008-04-30 21:26:04 +04:00
|
|
|
modDir = ".";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
fout << "\t\t\t\tModulePath=\""
|
2008-10-01 17:04:27 +04:00
|
|
|
<< this->ConvertToXMLOutputPath(modDir.c_str())
|
|
|
|
<< "\\$(ConfigurationName)\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-02-01 19:49:27 +03:00
|
|
|
targetOptions.OutputAdditionalOptions(fout, "\t\t\t\t", "\n");
|
2003-10-18 00:19:37 +04:00
|
|
|
fout << "\t\t\t\tAdditionalIncludeDirectories=\"";
|
2006-02-18 19:51:23 +03:00
|
|
|
std::vector<std::string> includes;
|
2015-10-22 19:27:58 +03:00
|
|
|
this->GetIncludeDirectories(includes, target, "C", configName);
|
2003-10-18 00:19:37 +04:00
|
|
|
std::vector<std::string>::iterator i = includes.begin();
|
2016-05-16 17:34:04 +03:00
|
|
|
for (; i != includes.end(); ++i) {
|
2008-04-30 21:26:04 +04:00
|
|
|
// output the include path
|
2003-10-18 00:19:37 +04:00
|
|
|
std::string ipath = this->ConvertToXMLOutputPath(i->c_str());
|
|
|
|
fout << ipath << ";";
|
2012-08-13 21:42:58 +04:00
|
|
|
// if this is fortran then output the include with
|
2008-04-30 21:26:04 +04:00
|
|
|
// a ConfigurationName on the end of it.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
ipath = i->c_str();
|
|
|
|
ipath += "/$(ConfigurationName)";
|
|
|
|
ipath = this->ConvertToXMLOutputPath(ipath.c_str());
|
|
|
|
fout << ipath << ";";
|
2003-10-18 00:19:37 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2003-10-18 00:19:37 +04:00
|
|
|
fout << "\"\n";
|
2007-02-01 19:49:27 +03:00
|
|
|
targetOptions.OutputFlagMap(fout, "\t\t\t\t");
|
2011-01-26 02:54:36 +03:00
|
|
|
targetOptions.OutputPreprocessorDefinitions(fout, "\t\t\t\t", "\n", "CXX");
|
2005-07-27 21:36:36 +04:00
|
|
|
fout << "\t\t\t\tObjectFile=\"$(IntDir)\\\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (target->GetType() <= cmState::OBJECT_LIBRARY) {
|
2014-02-24 23:15:21 +04:00
|
|
|
// Specify the compiler program database file if configured.
|
2015-10-22 19:27:58 +03:00
|
|
|
std::string pdb = target->GetCompilePDBPath(configName);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!pdb.empty()) {
|
|
|
|
fout << "\t\t\t\tProgramDataBaseFileName=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(pdb.c_str()) << "\"\n";
|
2014-02-24 23:15:21 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
fout << "/>\n"; // end of <Tool Name=VCCLCompilerTool
|
|
|
|
if (gg->IsMasmEnabled() && !this->FortranProject) {
|
2014-08-07 23:20:49 +04:00
|
|
|
Options masmOptions(this, Options::MasmCompiler, 0, 0);
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2014-08-07 23:20:49 +04:00
|
|
|
fout <<
|
|
|
|
"\t\t\t<Tool\n"
|
|
|
|
"\t\t\t\tName=\"MASM\"\n"
|
|
|
|
"\t\t\t\tIncludePaths=\""
|
|
|
|
;
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2014-08-07 23:20:49 +04:00
|
|
|
const char* sep = "";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (i = includes.begin(); i != includes.end(); ++i) {
|
2014-08-07 23:20:49 +04:00
|
|
|
std::string inc = *i;
|
|
|
|
cmConvertToWindowsSlash(inc);
|
|
|
|
fout << sep << this->EscapeForXML(inc);
|
|
|
|
sep = ";";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-08-07 23:20:49 +04:00
|
|
|
fout << "\"\n";
|
|
|
|
// Use same preprocessor definitions as VCCLCompilerTool.
|
|
|
|
targetOptions.OutputPreprocessorDefinitions(fout, "\t\t\t\t", "\n",
|
|
|
|
"ASM_MASM");
|
|
|
|
masmOptions.OutputFlagMap(fout, "\t\t\t\t");
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2014-08-07 23:20:49 +04:00
|
|
|
fout <<
|
|
|
|
"\t\t\t\tObjectFile=\"$(IntDir)\\\"\n"
|
|
|
|
"\t\t\t/>\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-04-30 21:26:04 +04:00
|
|
|
tool = "VCCustomBuildTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
tool = "VFCustomBuildTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-04-30 21:26:04 +04:00
|
|
|
fout << "\t\t\t<Tool\n\t\t\t\tName=\"" << tool << "\"/>\n";
|
|
|
|
tool = "VCResourceCompilerTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
tool = "VFResourceCompilerTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-04-30 21:26:04 +04:00
|
|
|
fout << "\t\t\t<Tool\n\t\t\t\tName=\"" << tool << "\"\n"
|
2003-10-28 19:55:40 +03:00
|
|
|
<< "\t\t\t\tAdditionalIncludeDirectories=\"";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (i = includes.begin(); i != includes.end(); ++i) {
|
2002-09-04 23:23:56 +04:00
|
|
|
std::string ipath = this->ConvertToXMLOutputPath(i->c_str());
|
|
|
|
fout << ipath << ";";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
// add the -D flags to the RC tool
|
2007-02-01 19:49:27 +03:00
|
|
|
fout << "\"";
|
2011-01-26 02:54:36 +03:00
|
|
|
targetOptions.OutputPreprocessorDefinitions(fout, "\n\t\t\t\t", "", "RC");
|
2007-02-01 19:49:27 +03:00
|
|
|
fout << "/>\n";
|
2008-04-30 21:26:04 +04:00
|
|
|
tool = "VCMIDLTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
tool = "VFMIDLTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-04-30 21:26:04 +04:00
|
|
|
fout << "\t\t\t<Tool\n\t\t\t\tName=\"" << tool << "\"\n";
|
2011-08-13 01:08:35 +04:00
|
|
|
fout << "\t\t\t\tAdditionalIncludeDirectories=\"";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (i = includes.begin(); i != includes.end(); ++i) {
|
2011-08-13 01:08:35 +04:00
|
|
|
std::string ipath = this->ConvertToXMLOutputPath(i->c_str());
|
|
|
|
fout << ipath << ";";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-08-13 01:08:35 +04:00
|
|
|
fout << "\"\n";
|
2014-05-22 21:45:43 +04:00
|
|
|
fout << "\t\t\t\tMkTypLibCompatible=\"false\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (gg->GetPlatformName() == "x64") {
|
2006-07-28 19:21:50 +04:00
|
|
|
fout << "\t\t\t\tTargetEnvironment=\"3\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (gg->GetPlatformName() == "ia64") {
|
2006-07-28 19:21:50 +04:00
|
|
|
fout << "\t\t\t\tTargetEnvironment=\"2\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2006-07-28 19:21:50 +04:00
|
|
|
fout << "\t\t\t\tTargetEnvironment=\"1\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-05-22 21:45:43 +04:00
|
|
|
fout << "\t\t\t\tGenerateStublessProxies=\"true\"\n";
|
2006-02-10 07:08:19 +03:00
|
|
|
fout << "\t\t\t\tTypeLibraryName=\"$(InputName).tlb\"\n";
|
|
|
|
fout << "\t\t\t\tOutputDirectory=\"$(IntDir)\"\n";
|
|
|
|
fout << "\t\t\t\tHeaderFileName=\"$(InputName).h\"\n";
|
|
|
|
fout << "\t\t\t\tDLLDataFileName=\"\"\n";
|
|
|
|
fout << "\t\t\t\tInterfaceIdentifierFileName=\"$(InputName)_i.c\"\n";
|
|
|
|
fout << "\t\t\t\tProxyFileName=\"$(InputName)_p.c\"/>\n";
|
|
|
|
// end of <Tool Name=VCMIDLTool
|
2008-03-31 18:59:02 +04:00
|
|
|
|
2015-09-15 22:36:07 +03:00
|
|
|
// Add manifest tool settings.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (targetBuilds &&
|
|
|
|
this->GetVersion() >= cmGlobalVisualStudioGenerator::VS8) {
|
|
|
|
const char* manifestTool = "VCManifestTool";
|
|
|
|
if (this->FortranProject) {
|
2015-09-15 22:36:07 +03:00
|
|
|
manifestTool = "VFManifestTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2015-09-15 22:36:07 +03:00
|
|
|
fout <<
|
|
|
|
"\t\t\t<Tool\n"
|
|
|
|
"\t\t\t\tName=\"" << manifestTool << "\"";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2015-09-15 22:36:07 +03:00
|
|
|
|
2015-09-16 17:24:16 +03:00
|
|
|
std::vector<cmSourceFile const*> manifest_srcs;
|
2015-10-22 19:27:58 +03:00
|
|
|
target->GetManifests(manifest_srcs, configName);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!manifest_srcs.empty()) {
|
2015-09-16 17:24:16 +03:00
|
|
|
fout << "\n\t\t\t\tAdditionalManifestFiles=\"";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<cmSourceFile const*>::const_iterator mi =
|
|
|
|
manifest_srcs.begin();
|
|
|
|
mi != manifest_srcs.end(); ++mi) {
|
2015-09-16 17:24:16 +03:00
|
|
|
std::string m = (*mi)->GetFullPath();
|
|
|
|
fout << this->ConvertToXMLOutputPath(m.c_str()) << ";";
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\"";
|
|
|
|
}
|
2015-09-16 17:24:16 +03:00
|
|
|
|
2015-09-15 22:36:07 +03:00
|
|
|
// Check if we need the FAT32 workaround.
|
2008-03-31 18:59:02 +04:00
|
|
|
// Check the filesystem type where the target will be written.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmLVS7G_IsFAT(target->GetDirectory(configName).c_str())) {
|
2008-03-31 18:59:02 +04:00
|
|
|
// Add a flag telling the manifest tool to use a workaround
|
|
|
|
// for FAT32 file systems, which can cause an empty manifest
|
|
|
|
// to be embedded into the resulting executable. See CMake
|
2012-08-13 21:42:58 +04:00
|
|
|
// bug #2617.
|
2015-09-15 22:36:07 +03:00
|
|
|
fout << "\n\t\t\t\tUseFAT32Workaround=\"true\"";
|
2006-10-04 22:02:12 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "/>\n";
|
|
|
|
}
|
2006-02-10 07:08:19 +03:00
|
|
|
|
2007-05-09 16:25:45 +04:00
|
|
|
this->OutputTargetRules(fout, configName, target, libName);
|
2013-08-05 23:23:13 +04:00
|
|
|
this->OutputBuildTool(fout, configName, target, targetOptions);
|
2016-02-15 15:02:50 +03:00
|
|
|
this->OutputDeploymentDebuggerTool(fout, configName, target);
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\t\t</Configuration>\n";
|
|
|
|
}
|
2004-07-15 00:10:18 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string cmLocalVisualStudio7Generator::GetBuildTypeLinkerFlags(
|
|
|
|
std::string rootLinkerFlags, const std::string& configName)
|
2006-01-27 21:48:21 +03:00
|
|
|
{
|
|
|
|
std::string configTypeUpper = cmSystemTools::UpperCase(configName);
|
2012-08-13 21:42:58 +04:00
|
|
|
std::string extraLinkOptionsBuildTypeDef =
|
2006-05-12 19:56:09 +04:00
|
|
|
rootLinkerFlags + "_" + configTypeUpper;
|
2006-01-27 21:48:21 +03:00
|
|
|
|
|
|
|
std::string extraLinkOptionsBuildType =
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->GetRequiredDefinition(
|
|
|
|
extraLinkOptionsBuildTypeDef.c_str());
|
2004-07-15 00:10:18 +04:00
|
|
|
|
2006-01-27 21:48:21 +03:00
|
|
|
return extraLinkOptionsBuildType;
|
|
|
|
}
|
2005-02-17 18:39:59 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7Generator::OutputBuildTool(
|
|
|
|
std::ostream& fout, const std::string& configName, cmGeneratorTarget* target,
|
2014-02-10 07:48:34 +04:00
|
|
|
const Options& targetOptions)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2009-10-21 00:38:37 +04:00
|
|
|
cmGlobalVisualStudio7Generator* gg =
|
|
|
|
static_cast<cmGlobalVisualStudio7Generator*>(this->GlobalGenerator);
|
2002-09-04 23:23:56 +04:00
|
|
|
std::string temp;
|
2003-07-03 20:50:41 +04:00
|
|
|
std::string extraLinkOptions;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (target->GetType() == cmState::EXECUTABLE) {
|
2012-08-13 21:42:58 +04:00
|
|
|
extraLinkOptions =
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->GetRequiredDefinition("CMAKE_EXE_LINKER_FLAGS") +
|
|
|
|
std::string(" ") +
|
|
|
|
GetBuildTypeLinkerFlags("CMAKE_EXE_LINKER_FLAGS", configName);
|
|
|
|
}
|
|
|
|
if (target->GetType() == cmState::SHARED_LIBRARY) {
|
2012-08-13 21:42:58 +04:00
|
|
|
extraLinkOptions =
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->GetRequiredDefinition("CMAKE_SHARED_LINKER_FLAGS") +
|
|
|
|
std::string(" ") +
|
|
|
|
GetBuildTypeLinkerFlags("CMAKE_SHARED_LINKER_FLAGS", configName);
|
|
|
|
}
|
|
|
|
if (target->GetType() == cmState::MODULE_LIBRARY) {
|
2012-08-13 21:42:58 +04:00
|
|
|
extraLinkOptions =
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->GetRequiredDefinition("CMAKE_MODULE_LINKER_FLAGS") +
|
|
|
|
std::string(" ") +
|
|
|
|
GetBuildTypeLinkerFlags("CMAKE_MODULE_LINKER_FLAGS", configName);
|
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2015-10-22 19:27:58 +03:00
|
|
|
const char* targetLinkFlags = target->GetProperty("LINK_FLAGS");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (targetLinkFlags) {
|
2003-07-03 20:50:41 +04:00
|
|
|
extraLinkOptions += " ";
|
|
|
|
extraLinkOptions += targetLinkFlags;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-04-03 20:57:51 +04:00
|
|
|
std::string configTypeUpper = cmSystemTools::UpperCase(configName);
|
|
|
|
std::string linkFlagsConfig = "LINK_FLAGS_";
|
|
|
|
linkFlagsConfig += configTypeUpper;
|
2015-10-22 19:27:58 +03:00
|
|
|
targetLinkFlags = target->GetProperty(linkFlagsConfig.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (targetLinkFlags) {
|
2006-04-03 20:57:51 +04:00
|
|
|
extraLinkOptions += " ";
|
|
|
|
extraLinkOptions += targetLinkFlags;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-11-14 21:47:00 +03:00
|
|
|
Options linkOptions(this, Options::Linker);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2014-11-14 21:47:00 +03:00
|
|
|
linkOptions.AddTable(cmLocalVisualStudio7GeneratorFortranLinkFlagTable);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-11-14 21:47:00 +03:00
|
|
|
linkOptions.AddTable(cmLocalVisualStudio7GeneratorLinkFlagTable);
|
|
|
|
|
2007-02-01 19:49:27 +03:00
|
|
|
linkOptions.Parse(extraLinkOptions.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!this->ModuleDefinitionFile.empty()) {
|
2016-05-20 00:11:40 +03:00
|
|
|
std::string defFile = this->ConvertToOutputFormat(
|
|
|
|
this->ModuleDefinitionFile, cmOutputConverter::SHELL);
|
2009-09-30 00:39:07 +04:00
|
|
|
linkOptions.AddFlag("ModuleDefinitionFile", defFile.c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-08-04 20:19:42 +03:00
|
|
|
|
2016-07-10 20:24:43 +03:00
|
|
|
if ((target->GetType() == cmState::SHARED_LIBRARY ||
|
|
|
|
target->IsExecutableWithExports()) &&
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->IsOn("CMAKE_SUPPORT_WINDOWS_EXPORT_ALL_SYMBOLS")) {
|
|
|
|
if (target->GetPropertyAsBool("WINDOWS_EXPORT_ALL_SYMBOLS")) {
|
2015-06-19 23:12:43 +03:00
|
|
|
linkOptions.AddFlag("ModuleDefinitionFile", "$(IntDir)/exportall.def");
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
switch (target->GetType()) {
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::UNKNOWN_LIBRARY:
|
2012-11-07 16:45:52 +04:00
|
|
|
break;
|
2016-05-16 17:34:04 +03:00
|
|
|
case cmState::OBJECT_LIBRARY: {
|
2015-10-22 19:27:58 +03:00
|
|
|
std::string libpath = this->GetTargetDirectory(target);
|
2012-03-12 18:55:07 +04:00
|
|
|
libpath += "/";
|
|
|
|
libpath += configName;
|
|
|
|
libpath += "/";
|
2015-10-22 19:27:58 +03:00
|
|
|
libpath += target->GetName();
|
2012-03-12 18:55:07 +04:00
|
|
|
libpath += ".lib";
|
|
|
|
const char* tool =
|
2016-05-16 17:34:04 +03:00
|
|
|
this->FortranProject ? "VFLibrarianTool" : "VCLibrarianTool";
|
2012-03-12 18:55:07 +04:00
|
|
|
fout << "\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\tName=\"" << tool << "\"\n";
|
|
|
|
fout << "\t\t\t\tOutputFile=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(libpath.c_str()) << "\"/>\n";
|
|
|
|
break;
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
case cmState::STATIC_LIBRARY: {
|
|
|
|
std::string targetNameFull = target->GetFullName(configName);
|
|
|
|
std::string libpath = target->GetDirectory(configName);
|
|
|
|
libpath += "/";
|
|
|
|
libpath += targetNameFull;
|
|
|
|
const char* tool = "VCLibrarianTool";
|
|
|
|
if (this->FortranProject) {
|
|
|
|
tool = "VFLibrarianTool";
|
2004-09-22 22:42:05 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\tName=\"" << tool << "\"\n";
|
|
|
|
|
|
|
|
if (this->GetVersion() < cmGlobalVisualStudioGenerator::VS8 ||
|
|
|
|
this->FortranProject) {
|
|
|
|
std::ostringstream libdeps;
|
|
|
|
this->Internal->OutputObjects(libdeps, target);
|
|
|
|
if (!libdeps.str().empty()) {
|
|
|
|
fout << "\t\t\t\tAdditionalDependencies=\"" << libdeps.str()
|
|
|
|
<< "\"\n";
|
2013-02-13 20:48:32 +04:00
|
|
|
}
|
2013-02-13 20:30:14 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string libflags;
|
|
|
|
this->GetStaticLibraryFlags(libflags, configTypeUpper, target);
|
|
|
|
if (!libflags.empty()) {
|
|
|
|
fout << "\t\t\t\tAdditionalOptions=\"" << libflags << "\"\n";
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\t\t\t\tOutputFile=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(libpath.c_str()) << "\"/>\n";
|
|
|
|
break;
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
case cmState::SHARED_LIBRARY:
|
|
|
|
case cmState::MODULE_LIBRARY: {
|
|
|
|
std::string targetName;
|
|
|
|
std::string targetNameSO;
|
|
|
|
std::string targetNameFull;
|
|
|
|
std::string targetNameImport;
|
|
|
|
std::string targetNamePDB;
|
|
|
|
target->GetLibraryNames(targetName, targetNameSO, targetNameFull,
|
2007-03-19 17:00:36 +03:00
|
|
|
targetNameImport, targetNamePDB, configName);
|
2007-02-01 17:57:24 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
// Compute the link library and directory information.
|
|
|
|
cmComputeLinkInformation* pcli = target->GetLinkInformation(configName);
|
|
|
|
if (!pcli) {
|
|
|
|
return;
|
2006-04-12 00:55:49 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
cmComputeLinkInformation& cli = *pcli;
|
|
|
|
std::string linkLanguage = cli.GetLinkLanguage();
|
|
|
|
|
|
|
|
// Compute the variable name to lookup standard libraries for this
|
|
|
|
// language.
|
|
|
|
std::string standardLibsVar = "CMAKE_";
|
|
|
|
standardLibsVar += linkLanguage;
|
|
|
|
standardLibsVar += "_STANDARD_LIBRARIES";
|
|
|
|
const char* tool = "VCLinkerTool";
|
|
|
|
if (this->FortranProject) {
|
|
|
|
tool = "VFLinkerTool";
|
2008-04-30 21:26:04 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\tName=\"" << tool << "\"\n";
|
|
|
|
if (!gg->NeedLinkLibraryDependencies(target)) {
|
|
|
|
fout << "\t\t\t\tLinkLibraryDependencies=\"false\"\n";
|
|
|
|
}
|
|
|
|
linkOptions.OutputAdditionalOptions(fout, "\t\t\t\t", "\n");
|
|
|
|
// Use the NOINHERIT macro to avoid getting VS project default
|
|
|
|
// libraries which may be set by the user to something bad.
|
|
|
|
fout << "\t\t\t\tAdditionalDependencies=\"$(NOINHERIT) "
|
|
|
|
<< this->Makefile->GetSafeDefinition(standardLibsVar.c_str());
|
|
|
|
if (this->GetVersion() < cmGlobalVisualStudioGenerator::VS8 ||
|
|
|
|
this->FortranProject) {
|
|
|
|
this->Internal->OutputObjects(fout, target, " ");
|
|
|
|
}
|
|
|
|
fout << " ";
|
|
|
|
this->Internal->OutputLibraries(fout, cli.GetItems());
|
|
|
|
fout << "\"\n";
|
|
|
|
temp = target->GetDirectory(configName);
|
|
|
|
temp += "/";
|
|
|
|
temp += targetNameFull;
|
|
|
|
fout << "\t\t\t\tOutputFile=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
|
|
|
|
this->WriteTargetVersionAttribute(fout, target);
|
|
|
|
linkOptions.OutputFlagMap(fout, "\t\t\t\t");
|
|
|
|
fout << "\t\t\t\tAdditionalLibraryDirectories=\"";
|
|
|
|
this->OutputLibraryDirectories(fout, cli.GetDirectories());
|
|
|
|
fout << "\"\n";
|
|
|
|
temp = target->GetPDBDirectory(configName);
|
|
|
|
temp += "/";
|
|
|
|
temp += targetNamePDB;
|
|
|
|
fout << "\t\t\t\tProgramDatabaseFile=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
|
|
|
|
if (targetOptions.IsDebug()) {
|
|
|
|
fout << "\t\t\t\tGenerateDebugInformation=\"true\"\n";
|
|
|
|
}
|
|
|
|
if (this->WindowsCEProject) {
|
|
|
|
if (this->GetVersion() < cmGlobalVisualStudioGenerator::VS9) {
|
|
|
|
fout << "\t\t\t\tSubSystem=\"9\"\n";
|
|
|
|
} else {
|
|
|
|
fout << "\t\t\t\tSubSystem=\"8\"\n";
|
|
|
|
}
|
2009-10-21 00:38:37 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string stackVar = "CMAKE_";
|
|
|
|
stackVar += linkLanguage;
|
|
|
|
stackVar += "_STACK_SIZE";
|
|
|
|
const char* stackVal = this->Makefile->GetDefinition(stackVar.c_str());
|
|
|
|
if (stackVal) {
|
|
|
|
fout << "\t\t\t\tStackReserveSize=\"" << stackVal << "\"\n";
|
|
|
|
}
|
|
|
|
temp = target->GetDirectory(configName, true);
|
|
|
|
temp += "/";
|
|
|
|
temp += targetNameImport;
|
|
|
|
fout << "\t\t\t\tImportLibrary=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"";
|
|
|
|
if (this->FortranProject) {
|
|
|
|
fout << "\n\t\t\t\tLinkDLL=\"true\"";
|
|
|
|
}
|
|
|
|
fout << "/>\n";
|
|
|
|
} break;
|
|
|
|
case cmState::EXECUTABLE: {
|
|
|
|
std::string targetName;
|
|
|
|
std::string targetNameFull;
|
|
|
|
std::string targetNameImport;
|
|
|
|
std::string targetNamePDB;
|
|
|
|
target->GetExecutableNames(targetName, targetNameFull, targetNameImport,
|
|
|
|
targetNamePDB, configName);
|
|
|
|
|
|
|
|
// Compute the link library and directory information.
|
|
|
|
cmComputeLinkInformation* pcli = target->GetLinkInformation(configName);
|
|
|
|
if (!pcli) {
|
|
|
|
return;
|
2012-03-12 22:40:58 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
cmComputeLinkInformation& cli = *pcli;
|
|
|
|
std::string linkLanguage = cli.GetLinkLanguage();
|
|
|
|
|
|
|
|
bool isWin32Executable = target->GetPropertyAsBool("WIN32_EXECUTABLE");
|
|
|
|
|
|
|
|
// Compute the variable name to lookup standard libraries for this
|
|
|
|
// language.
|
|
|
|
std::string standardLibsVar = "CMAKE_";
|
|
|
|
standardLibsVar += linkLanguage;
|
|
|
|
standardLibsVar += "_STANDARD_LIBRARIES";
|
|
|
|
const char* tool = "VCLinkerTool";
|
|
|
|
if (this->FortranProject) {
|
|
|
|
tool = "VFLinkerTool";
|
2004-09-22 22:42:05 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\t\t\t<Tool\n"
|
|
|
|
<< "\t\t\t\tName=\"" << tool << "\"\n";
|
|
|
|
if (!gg->NeedLinkLibraryDependencies(target)) {
|
|
|
|
fout << "\t\t\t\tLinkLibraryDependencies=\"false\"\n";
|
|
|
|
}
|
|
|
|
linkOptions.OutputAdditionalOptions(fout, "\t\t\t\t", "\n");
|
|
|
|
// Use the NOINHERIT macro to avoid getting VS project default
|
|
|
|
// libraries which may be set by the user to something bad.
|
|
|
|
fout << "\t\t\t\tAdditionalDependencies=\"$(NOINHERIT) "
|
|
|
|
<< this->Makefile->GetSafeDefinition(standardLibsVar.c_str());
|
|
|
|
if (this->GetVersion() < cmGlobalVisualStudioGenerator::VS8 ||
|
|
|
|
this->FortranProject) {
|
|
|
|
this->Internal->OutputObjects(fout, target, " ");
|
|
|
|
}
|
|
|
|
fout << " ";
|
|
|
|
this->Internal->OutputLibraries(fout, cli.GetItems());
|
|
|
|
fout << "\"\n";
|
|
|
|
temp = target->GetDirectory(configName);
|
|
|
|
temp += "/";
|
|
|
|
temp += targetNameFull;
|
|
|
|
fout << "\t\t\t\tOutputFile=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"\n";
|
|
|
|
this->WriteTargetVersionAttribute(fout, target);
|
|
|
|
linkOptions.OutputFlagMap(fout, "\t\t\t\t");
|
|
|
|
fout << "\t\t\t\tAdditionalLibraryDirectories=\"";
|
|
|
|
this->OutputLibraryDirectories(fout, cli.GetDirectories());
|
|
|
|
fout << "\"\n";
|
|
|
|
std::string path = this->ConvertToXMLOutputPathSingle(
|
|
|
|
target->GetPDBDirectory(configName).c_str());
|
|
|
|
fout << "\t\t\t\tProgramDatabaseFile=\"" << path << "/" << targetNamePDB
|
|
|
|
<< "\"\n";
|
|
|
|
if (targetOptions.IsDebug()) {
|
|
|
|
fout << "\t\t\t\tGenerateDebugInformation=\"true\"\n";
|
|
|
|
}
|
|
|
|
if (this->WindowsCEProject) {
|
|
|
|
if (this->GetVersion() < cmGlobalVisualStudioGenerator::VS9) {
|
|
|
|
fout << "\t\t\t\tSubSystem=\"9\"\n";
|
|
|
|
} else {
|
|
|
|
fout << "\t\t\t\tSubSystem=\"8\"\n";
|
2013-02-13 20:48:32 +04:00
|
|
|
}
|
2013-08-05 23:23:13 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!linkOptions.GetFlag("EntryPointSymbol")) {
|
|
|
|
const char* entryPointSymbol = targetOptions.UsingUnicode()
|
|
|
|
? (isWin32Executable ? "wWinMainCRTStartup" : "mainWCRTStartup")
|
|
|
|
: (isWin32Executable ? "WinMainCRTStartup" : "mainACRTStartup");
|
|
|
|
fout << "\t\t\t\tEntryPointSymbol=\"" << entryPointSymbol << "\"\n";
|
2013-08-05 23:23:13 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (this->FortranProject) {
|
|
|
|
fout << "\t\t\t\tSubSystem=\""
|
|
|
|
<< (isWin32Executable ? "subSystemWindows" : "subSystemConsole")
|
|
|
|
<< "\"\n";
|
|
|
|
} else {
|
|
|
|
fout << "\t\t\t\tSubSystem=\"" << (isWin32Executable ? "2" : "1")
|
|
|
|
<< "\"\n";
|
|
|
|
}
|
|
|
|
std::string stackVar = "CMAKE_";
|
|
|
|
stackVar += linkLanguage;
|
|
|
|
stackVar += "_STACK_SIZE";
|
|
|
|
const char* stackVal = this->Makefile->GetDefinition(stackVar.c_str());
|
|
|
|
if (stackVal) {
|
|
|
|
fout << "\t\t\t\tStackReserveSize=\"" << stackVal << "\"";
|
|
|
|
}
|
|
|
|
temp = target->GetDirectory(configName, true);
|
|
|
|
temp += "/";
|
|
|
|
temp += targetNameImport;
|
|
|
|
fout << "\t\t\t\tImportLibrary=\""
|
|
|
|
<< this->ConvertToXMLOutputPathSingle(temp.c_str()) << "\"/>\n";
|
|
|
|
break;
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::UTILITY:
|
|
|
|
case cmState::GLOBAL_TARGET:
|
|
|
|
case cmState::INTERFACE_LIBRARY:
|
2002-09-04 23:23:56 +04:00
|
|
|
break;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2016-02-15 15:02:50 +03:00
|
|
|
void cmLocalVisualStudio7Generator::OutputDeploymentDebuggerTool(
|
|
|
|
std::ostream& fout, std::string const& config, cmGeneratorTarget* target)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->WindowsCEProject) {
|
|
|
|
if (const char* dir = target->GetProperty("DEPLOYMENT_REMOTE_DIRECTORY")) {
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2016-02-15 15:02:50 +03:00
|
|
|
fout <<
|
|
|
|
"\t\t\t<DeploymentTool\n"
|
|
|
|
"\t\t\t\tForceDirty=\"-1\"\n"
|
|
|
|
"\t\t\t\tRemoteDirectory=\"" << this->EscapeForXML(dir) << "\"\n"
|
|
|
|
"\t\t\t\tRegisterOutput=\"0\"\n"
|
|
|
|
"\t\t\t\tAdditionalFiles=\"\"/>\n"
|
|
|
|
;
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-03-17 16:37:01 +03:00
|
|
|
std::string const exe =
|
|
|
|
dir + std::string("\\") + target->GetFullName(config);
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2016-02-15 15:02:50 +03:00
|
|
|
fout <<
|
|
|
|
"\t\t\t<DebuggerTool\n"
|
|
|
|
"\t\t\t\tRemoteExecutable=\"" << this->EscapeForXML(exe) << "\"\n"
|
|
|
|
"\t\t\t\tArguments=\"\"\n"
|
|
|
|
"\t\t\t/>\n"
|
|
|
|
;
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-02-15 15:02:50 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-02-15 15:02:50 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteTargetVersionAttribute(
|
|
|
|
std::ostream& fout, cmGeneratorTarget* gt)
|
2006-10-17 02:17:14 +04:00
|
|
|
{
|
|
|
|
int major;
|
|
|
|
int minor;
|
2015-10-16 20:19:51 +03:00
|
|
|
gt->GetTargetVersion(major, minor);
|
2006-10-17 02:17:14 +04:00
|
|
|
fout << "\t\t\t\tVersion=\"" << major << "." << minor << "\"\n";
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7GeneratorInternals::OutputLibraries(
|
|
|
|
std::ostream& fout, ItemVector const& libs)
|
2006-01-14 02:18:32 +03:00
|
|
|
{
|
2008-01-22 17:13:04 +03:00
|
|
|
cmLocalVisualStudio7Generator* lg = this->LocalGenerator;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (ItemVector::const_iterator l = libs.begin(); l != libs.end(); ++l) {
|
|
|
|
if (l->IsPath) {
|
|
|
|
std::string rel =
|
2016-05-20 00:11:40 +03:00
|
|
|
lg->Convert(l->Value.c_str(), cmOutputConverter::START_OUTPUT,
|
|
|
|
cmOutputConverter::UNCHANGED);
|
2008-01-22 17:13:04 +03:00
|
|
|
fout << lg->ConvertToXMLOutputPath(rel.c_str()) << " ";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (!l->Target ||
|
|
|
|
l->Target->GetType() != cmState::INTERFACE_LIBRARY) {
|
2008-01-22 17:13:04 +03:00
|
|
|
fout << l->Value << " ";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7GeneratorInternals::OutputObjects(
|
|
|
|
std::ostream& fout, cmGeneratorTarget* gt, const char* isep)
|
2012-03-12 22:40:58 +04:00
|
|
|
{
|
|
|
|
// VS < 8 does not support per-config source locations so we
|
|
|
|
// list object library content on the link line instead.
|
|
|
|
cmLocalVisualStudio7Generator* lg = this->LocalGenerator;
|
|
|
|
std::vector<std::string> objs;
|
2014-02-13 20:25:00 +04:00
|
|
|
gt->UseObjectLibraries(objs, "");
|
2016-05-16 17:34:04 +03:00
|
|
|
const char* sep = isep ? isep : "";
|
|
|
|
for (std::vector<std::string>::const_iterator oi = objs.begin();
|
|
|
|
oi != objs.end(); ++oi) {
|
2016-05-20 00:11:40 +03:00
|
|
|
std::string rel = lg->Convert(oi->c_str(), cmOutputConverter::START_OUTPUT,
|
|
|
|
cmOutputConverter::UNCHANGED);
|
2012-03-12 22:40:58 +04:00
|
|
|
fout << sep << lg->ConvertToXMLOutputPath(rel.c_str());
|
|
|
|
sep = " ";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2012-03-12 22:40:58 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7Generator::OutputLibraryDirectories(
|
|
|
|
std::ostream& fout, std::vector<std::string> const& dirs)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2006-01-14 02:18:32 +03:00
|
|
|
const char* comma = "";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator d = dirs.begin();
|
|
|
|
d != dirs.end(); ++d) {
|
2006-04-20 23:28:56 +04:00
|
|
|
// Remove any trailing slash and skip empty paths.
|
2006-01-14 02:18:32 +03:00
|
|
|
std::string dir = *d;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (dir[dir.size() - 1] == '/') {
|
|
|
|
dir = dir.substr(0, dir.size() - 1);
|
|
|
|
}
|
|
|
|
if (dir.empty()) {
|
2006-04-20 23:28:56 +04:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-04-20 23:28:56 +04:00
|
|
|
|
|
|
|
// Switch to a relative path specification if it is shorter.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::FileIsFullPath(dir.c_str())) {
|
2016-05-20 00:11:40 +03:00
|
|
|
std::string rel =
|
|
|
|
this->Convert(dir.c_str(), cmOutputConverter::START_OUTPUT,
|
|
|
|
cmOutputConverter::UNCHANGED);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (rel.size() < dir.size()) {
|
2006-04-20 23:28:56 +04:00
|
|
|
dir = rel;
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-04-20 23:28:56 +04:00
|
|
|
|
|
|
|
// First search a configuration-specific subdirectory and then the
|
|
|
|
// original directory.
|
2015-02-16 19:11:37 +03:00
|
|
|
fout << comma
|
2016-05-16 17:34:04 +03:00
|
|
|
<< this->ConvertToXMLOutputPath(
|
|
|
|
(dir + "/$(ConfigurationName)").c_str())
|
2006-04-20 23:28:56 +04:00
|
|
|
<< "," << this->ConvertToXMLOutputPath(dir.c_str());
|
|
|
|
comma = ",";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteVCProjFile(std::ostream& fout,
|
2014-02-07 02:31:47 +04:00
|
|
|
const std::string& libName,
|
2015-10-22 19:27:58 +03:00
|
|
|
cmGeneratorTarget* target)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2015-05-20 20:55:21 +03:00
|
|
|
std::vector<std::string> configs;
|
|
|
|
this->Makefile->GetConfigurations(configs);
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// We may be modifying the source groups temporarily, so make a copy.
|
2006-03-15 19:02:08 +03:00
|
|
|
std::vector<cmSourceGroup> sourceGroups = this->Makefile->GetSourceGroups();
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// get the classes from the source lists then add them to the groups
|
2009-09-30 00:39:07 +04:00
|
|
|
this->ModuleDefinitionFile = "";
|
2013-07-14 20:22:57 +04:00
|
|
|
std::vector<cmSourceFile*> classes;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!target->GetConfigCommonSourceFiles(classes)) {
|
2014-02-13 20:25:00 +04:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
for (std::vector<cmSourceFile*>::const_iterator i = classes.begin();
|
|
|
|
i != classes.end(); i++) {
|
|
|
|
if (!(*i)->GetObjectLibrary().empty()) {
|
2014-03-18 19:40:46 +04:00
|
|
|
continue;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
// Add the file to the list of sources.
|
|
|
|
std::string source = (*i)->GetFullPath();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmSystemTools::UpperCase((*i)->GetExtension()) == "DEF") {
|
2006-03-15 19:02:08 +03:00
|
|
|
this->ModuleDefinitionFile = (*i)->GetFullPath();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-01-21 19:43:47 +04:00
|
|
|
cmSourceGroup* sourceGroup =
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->FindSourceGroup(source.c_str(), sourceGroups);
|
2014-01-21 19:43:47 +04:00
|
|
|
sourceGroup->AssignSource(*i);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// open the project
|
|
|
|
this->WriteProjectStart(fout, libName, target, sourceGroups);
|
|
|
|
// write the configuration information
|
2015-05-20 20:55:21 +03:00
|
|
|
this->WriteConfigurations(fout, configs, libName, target);
|
2002-09-04 23:23:56 +04:00
|
|
|
|
|
|
|
fout << "\t<Files>\n";
|
2003-02-06 23:18:43 +03:00
|
|
|
|
2002-09-04 23:23:56 +04:00
|
|
|
// Loop through every source group.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (unsigned int i = 0; i < sourceGroups.size(); ++i) {
|
2005-07-13 19:21:30 +04:00
|
|
|
cmSourceGroup sg = sourceGroups[i];
|
|
|
|
this->WriteGroup(&sg, target, fout, libName, configs);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->GetVersion() >= cmGlobalVisualStudioGenerator::VS8 &&
|
|
|
|
!this->FortranProject) {
|
2012-03-12 22:40:58 +04:00
|
|
|
// VS >= 8 support per-config source locations so we
|
|
|
|
// list object library content as external objects.
|
|
|
|
std::vector<std::string> objs;
|
2015-10-22 19:27:58 +03:00
|
|
|
target->UseObjectLibraries(objs, "");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!objs.empty()) {
|
2012-03-12 22:40:58 +04:00
|
|
|
// TODO: Separate sub-filter for each object library used?
|
|
|
|
fout << "\t\t<Filter Name=\"Object Libraries\">\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator oi = objs.begin();
|
|
|
|
oi != objs.end(); ++oi) {
|
2012-03-12 22:40:58 +04:00
|
|
|
std::string o = this->ConvertToXMLOutputPathSingle(oi->c_str());
|
|
|
|
fout << "\t\t\t<File RelativePath=\"" << o << "\" />\n";
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\t\t</Filter>\n";
|
2012-03-12 22:40:58 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t</Files>\n";
|
|
|
|
|
|
|
|
// Write the VCProj file's footer.
|
2011-07-29 18:04:36 +04:00
|
|
|
this->WriteVCProjFooter(fout, target);
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
|
|
|
|
2008-01-14 17:20:58 +03:00
|
|
|
struct cmLVS7GFileConfig
|
|
|
|
{
|
|
|
|
std::string ObjectName;
|
|
|
|
std::string CompileFlags;
|
|
|
|
std::string CompileDefs;
|
|
|
|
std::string CompileDefsConfig;
|
|
|
|
std::string AdditionalDeps;
|
|
|
|
bool ExcludedFromBuild;
|
|
|
|
};
|
|
|
|
|
|
|
|
class cmLocalVisualStudio7GeneratorFCInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmLocalVisualStudio7GeneratorFCInfo(cmLocalVisualStudio7Generator* lg,
|
2015-10-22 19:27:58 +03:00
|
|
|
cmGeneratorTarget* target,
|
2008-01-14 17:20:58 +03:00
|
|
|
cmSourceFile const& sf,
|
2015-05-20 20:55:21 +03:00
|
|
|
std::vector<std::string> const& configs);
|
2014-02-10 09:21:34 +04:00
|
|
|
std::map<std::string, cmLVS7GFileConfig> FileConfigMap;
|
2008-01-14 17:20:58 +03:00
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
cmLocalVisualStudio7GeneratorFCInfo::cmLocalVisualStudio7GeneratorFCInfo(
|
|
|
|
cmLocalVisualStudio7Generator* lg, cmGeneratorTarget* gt,
|
|
|
|
cmSourceFile const& sf, std::vector<std::string> const& configs)
|
2008-01-14 17:20:58 +03:00
|
|
|
{
|
|
|
|
std::string objectName;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (gt->HasExplicitObjectName(&sf)) {
|
2013-11-10 14:22:44 +04:00
|
|
|
objectName = gt->GetObjectName(&sf);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-01-14 17:20:58 +03:00
|
|
|
|
|
|
|
// Compute per-source, per-config information.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = configs.begin();
|
|
|
|
i != configs.end(); ++i) {
|
2008-01-14 17:20:58 +03:00
|
|
|
std::string configUpper = cmSystemTools::UpperCase(*i);
|
|
|
|
cmLVS7GFileConfig fc;
|
|
|
|
bool needfc = false;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!objectName.empty()) {
|
2008-01-14 17:20:58 +03:00
|
|
|
fc.ObjectName = objectName;
|
|
|
|
needfc = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (const char* cflags = sf.GetProperty("COMPILE_FLAGS")) {
|
2008-01-14 17:20:58 +03:00
|
|
|
fc.CompileFlags = cflags;
|
|
|
|
needfc = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (lg->FortranProject) {
|
2016-06-06 00:44:39 +03:00
|
|
|
switch (cmOutputConverter::GetFortranFormat(
|
|
|
|
sf.GetProperty("Fortran_FORMAT"))) {
|
2016-05-20 00:11:40 +03:00
|
|
|
case cmOutputConverter::FortranFormatFixed:
|
2011-08-31 18:24:43 +04:00
|
|
|
fc.CompileFlags = "-fixed " + fc.CompileFlags;
|
|
|
|
needfc = true;
|
|
|
|
break;
|
2016-05-20 00:11:40 +03:00
|
|
|
case cmOutputConverter::FortranFormatFree:
|
2011-08-31 18:24:43 +04:00
|
|
|
fc.CompileFlags = "-free " + fc.CompileFlags;
|
|
|
|
needfc = true;
|
|
|
|
break;
|
2016-05-16 17:34:04 +03:00
|
|
|
default:
|
|
|
|
break;
|
2011-08-31 18:24:43 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (const char* cdefs = sf.GetProperty("COMPILE_DEFINITIONS")) {
|
2008-01-14 17:20:58 +03:00
|
|
|
fc.CompileDefs = cdefs;
|
|
|
|
needfc = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-01-16 05:02:00 +03:00
|
|
|
std::string defPropName = "COMPILE_DEFINITIONS_";
|
|
|
|
defPropName += configUpper;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (const char* ccdefs = sf.GetProperty(defPropName.c_str())) {
|
2008-01-14 17:20:58 +03:00
|
|
|
fc.CompileDefsConfig = ccdefs;
|
|
|
|
needfc = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-01-14 17:20:58 +03:00
|
|
|
|
|
|
|
// Check for extra object-file dependencies.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (const char* deps = sf.GetProperty("OBJECT_DEPENDS")) {
|
2008-01-14 17:20:58 +03:00
|
|
|
std::vector<std::string> depends;
|
|
|
|
cmSystemTools::ExpandListArgument(deps, depends);
|
|
|
|
const char* sep = "";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::iterator j = depends.begin();
|
|
|
|
j != depends.end(); ++j) {
|
2008-01-14 17:20:58 +03:00
|
|
|
fc.AdditionalDeps += sep;
|
|
|
|
fc.AdditionalDeps += lg->ConvertToXMLOutputPath(j->c_str());
|
|
|
|
sep = ";";
|
|
|
|
needfc = true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-01-14 17:20:58 +03:00
|
|
|
|
2014-02-04 06:20:56 +04:00
|
|
|
std::string lang =
|
2016-05-16 17:34:04 +03:00
|
|
|
lg->GlobalGenerator->GetLanguageFromExtension(sf.GetExtension().c_str());
|
2014-02-04 06:20:56 +04:00
|
|
|
const std::string& sourceLang = lg->GetSourceFileLanguage(sf);
|
2015-08-04 20:19:49 +03:00
|
|
|
const std::string& linkLanguage = gt->GetLinkerLanguage(i->c_str());
|
2008-01-14 17:20:58 +03:00
|
|
|
bool needForceLang = false;
|
|
|
|
// source file does not match its extension language
|
2016-05-16 17:34:04 +03:00
|
|
|
if (lang != sourceLang) {
|
2008-01-14 17:20:58 +03:00
|
|
|
needForceLang = true;
|
|
|
|
lang = sourceLang;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-01-14 17:20:58 +03:00
|
|
|
// If HEADER_FILE_ONLY is set, we must suppress this generation in
|
|
|
|
// the project file
|
2016-05-16 17:34:04 +03:00
|
|
|
fc.ExcludedFromBuild = (sf.GetPropertyAsBool("HEADER_FILE_ONLY"));
|
|
|
|
if (fc.ExcludedFromBuild) {
|
2008-01-14 17:20:58 +03:00
|
|
|
needfc = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-01-14 17:20:58 +03:00
|
|
|
|
|
|
|
// if the source file does not match the linker language
|
|
|
|
// then force c or c++
|
2016-05-16 17:34:04 +03:00
|
|
|
if (needForceLang || (linkLanguage != lang)) {
|
|
|
|
if (lang == "CXX") {
|
2008-01-14 17:20:58 +03:00
|
|
|
// force a C++ file type
|
|
|
|
fc.CompileFlags += " /TP ";
|
|
|
|
needfc = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
} else if (lang == "C") {
|
2008-01-14 17:20:58 +03:00
|
|
|
// force to c
|
|
|
|
fc.CompileFlags += " /TC ";
|
|
|
|
needfc = true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-01-14 17:20:58 +03:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (needfc) {
|
2008-01-14 17:20:58 +03:00
|
|
|
this->FileConfigMap[*i] = fc;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-01-14 17:20:58 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string cmLocalVisualStudio7Generator::ComputeLongestObjectDirectory(
|
|
|
|
cmGeneratorTarget const* target) const
|
2012-03-07 23:04:33 +04:00
|
|
|
{
|
2015-05-20 20:55:21 +03:00
|
|
|
std::vector<std::string> configs;
|
2015-10-23 19:26:38 +03:00
|
|
|
target->Target->GetMakefile()->GetConfigurations(configs);
|
2015-05-20 20:55:21 +03:00
|
|
|
|
2009-07-10 17:12:39 +04:00
|
|
|
// Compute the maximum length configuration name.
|
|
|
|
std::string config_max;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::iterator i = configs.begin();
|
|
|
|
i != configs.end(); ++i) {
|
|
|
|
if (i->size() > config_max.size()) {
|
2009-07-10 17:12:39 +04:00
|
|
|
config_max = *i;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-07-10 17:12:39 +04:00
|
|
|
|
|
|
|
// Compute the maximum length full path to the intermediate
|
|
|
|
// files directory for any configuration. This is used to construct
|
|
|
|
// object file names that do not produce paths that are too long.
|
|
|
|
std::string dir_max;
|
2015-09-25 01:13:20 +03:00
|
|
|
dir_max += this->GetCurrentBinaryDirectory();
|
2009-07-10 17:12:39 +04:00
|
|
|
dir_max += "/";
|
2015-10-23 19:26:38 +03:00
|
|
|
dir_max += this->GetTargetDirectory(target);
|
2009-07-10 17:12:39 +04:00
|
|
|
dir_max += "/";
|
|
|
|
dir_max += config_max;
|
|
|
|
dir_max += "/";
|
2012-03-07 23:04:33 +04:00
|
|
|
return dir_max;
|
2009-07-10 17:12:39 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmLocalVisualStudio7Generator::WriteGroup(
|
|
|
|
const cmSourceGroup* sg, cmGeneratorTarget* target, std::ostream& fout,
|
|
|
|
const std::string& libName, std::vector<std::string> const& configs)
|
2005-07-13 19:21:30 +04:00
|
|
|
{
|
2014-07-18 00:58:34 +04:00
|
|
|
cmGlobalVisualStudio7Generator* gg =
|
2016-05-16 17:34:04 +03:00
|
|
|
static_cast<cmGlobalVisualStudio7Generator*>(this->GlobalGenerator);
|
|
|
|
const std::vector<const cmSourceFile*>& sourceFiles = sg->GetSourceFiles();
|
|
|
|
std::vector<cmSourceGroup> const& children = sg->GetGroupChildren();
|
2013-02-04 13:35:48 +04:00
|
|
|
|
|
|
|
// Write the children to temporary output.
|
|
|
|
bool hasChildrenWithSources = false;
|
2015-01-05 22:31:31 +03:00
|
|
|
std::ostringstream tmpOut;
|
2016-05-16 17:34:04 +03:00
|
|
|
for (unsigned int i = 0; i < children.size(); ++i) {
|
|
|
|
if (this->WriteGroup(&children[i], target, tmpOut, libName, configs)) {
|
2013-02-04 13:35:48 +04:00
|
|
|
hasChildrenWithSources = true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-02-04 13:35:48 +04:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
// If the group is empty, don't write it at all.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (sourceFiles.empty() && !hasChildrenWithSources) {
|
2013-02-04 13:35:48 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
// If the group has a name, write the header.
|
|
|
|
std::string name = sg->GetName();
|
2016-05-16 17:34:04 +03:00
|
|
|
if (name != "") {
|
2005-07-13 19:21:30 +04:00
|
|
|
this->WriteVCProjBeginGroup(fout, name.c_str(), "");
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
// Loop through each source in the source group.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<const cmSourceFile*>::const_iterator sf =
|
|
|
|
sourceFiles.begin();
|
|
|
|
sf != sourceFiles.end(); ++sf) {
|
2005-07-13 19:21:30 +04:00
|
|
|
std::string source = (*sf)->GetFullPath();
|
2012-03-07 23:04:33 +04:00
|
|
|
FCInfo fcinfo(this, target, *(*sf), configs);
|
2006-10-14 00:13:14 +04:00
|
|
|
|
2015-10-22 19:27:58 +03:00
|
|
|
if (source != libName || target->GetType() == cmState::UTILITY ||
|
2016-05-16 17:34:04 +03:00
|
|
|
target->GetType() == cmState::GLOBAL_TARGET) {
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t<File\n";
|
|
|
|
std::string d = this->ConvertToXMLOutputPathSingle(source.c_str());
|
|
|
|
// Tell MS-Dev what the source is. If the compiler knows how to
|
|
|
|
// build it, then it will.
|
|
|
|
fout << "\t\t\t\tRelativePath=\"" << d << "\">\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (cmCustomCommand const* command = (*sf)->GetCustomCommand()) {
|
|
|
|
this->WriteCustomRule(fout, configs, source.c_str(), *command, fcinfo);
|
|
|
|
} else if (!fcinfo.FileConfigMap.empty()) {
|
2005-07-13 19:21:30 +04:00
|
|
|
const char* aCompilerTool = "VCCLCompilerTool";
|
2014-08-07 23:18:27 +04:00
|
|
|
const char* ppLang = "CXX";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2009-12-02 19:49:52 +03:00
|
|
|
aCompilerTool = "VFFortranCompilerTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-08-07 23:20:49 +04:00
|
|
|
std::string const& lang = (*sf)->GetLanguage();
|
2007-06-18 19:59:23 +04:00
|
|
|
std::string ext = (*sf)->GetExtension();
|
2005-07-13 19:21:30 +04:00
|
|
|
ext = cmSystemTools::LowerCase(ext);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (ext == "idl") {
|
2005-07-13 19:21:30 +04:00
|
|
|
aCompilerTool = "VCMIDLTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
aCompilerTool = "VFMIDLTool";
|
2002-12-14 00:16:48 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (ext == "rc") {
|
2012-08-13 21:42:58 +04:00
|
|
|
aCompilerTool = "VCResourceCompilerTool";
|
2014-08-07 23:18:27 +04:00
|
|
|
ppLang = "RC";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
aCompilerTool = "VFResourceCompilerTool";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (ext == "def") {
|
2005-07-13 19:21:30 +04:00
|
|
|
aCompilerTool = "VCCustomBuildTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
aCompilerTool = "VFCustomBuildTool";
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-08-07 23:20:49 +04:00
|
|
|
if (gg->IsMasmEnabled() && !this->FortranProject &&
|
2016-05-16 17:34:04 +03:00
|
|
|
lang == "ASM_MASM") {
|
2014-08-07 23:20:49 +04:00
|
|
|
aCompilerTool = "MASM";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
for (std::map<std::string, cmLVS7GFileConfig>::const_iterator fci =
|
|
|
|
fcinfo.FileConfigMap.begin();
|
|
|
|
fci != fcinfo.FileConfigMap.end(); ++fci) {
|
2008-01-14 17:20:58 +03:00
|
|
|
cmLVS7GFileConfig const& fc = fci->second;
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t\t<FileConfiguration\n"
|
2016-05-16 17:34:04 +03:00
|
|
|
<< "\t\t\t\t\tName=\"" << fci->first << "|"
|
|
|
|
<< gg->GetPlatformName() << "\"";
|
|
|
|
if (fc.ExcludedFromBuild) {
|
2006-10-14 00:13:14 +04:00
|
|
|
fout << " ExcludedFromBuild=\"true\"";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-10-14 00:13:14 +04:00
|
|
|
fout << ">\n";
|
|
|
|
fout << "\t\t\t\t\t<Tool\n"
|
2005-07-13 19:21:30 +04:00
|
|
|
<< "\t\t\t\t\tName=\"" << aCompilerTool << "\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!fc.CompileFlags.empty() || !fc.CompileDefs.empty() ||
|
|
|
|
!fc.CompileDefsConfig.empty()) {
|
2011-08-31 17:52:42 +04:00
|
|
|
Options::Tool tool = Options::Compiler;
|
|
|
|
cmVS7FlagTable const* table =
|
|
|
|
cmLocalVisualStudio7GeneratorFlagTable;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2011-08-31 17:52:42 +04:00
|
|
|
tool = Options::FortranCompiler;
|
|
|
|
table = cmLocalVisualStudio7GeneratorFortranFlagTable;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
Options fileOptions(this, tool, table, gg->ExtraFlagTable);
|
2008-01-14 17:20:58 +03:00
|
|
|
fileOptions.Parse(fc.CompileFlags.c_str());
|
|
|
|
fileOptions.AddDefines(fc.CompileDefs.c_str());
|
|
|
|
fileOptions.AddDefines(fc.CompileDefsConfig.c_str());
|
2007-02-01 19:49:27 +03:00
|
|
|
fileOptions.OutputAdditionalOptions(fout, "\t\t\t\t\t", "\n");
|
|
|
|
fileOptions.OutputFlagMap(fout, "\t\t\t\t\t");
|
2016-05-16 17:34:04 +03:00
|
|
|
fileOptions.OutputPreprocessorDefinitions(fout, "\t\t\t\t\t", "\n",
|
2014-08-07 23:18:27 +04:00
|
|
|
ppLang);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!fc.AdditionalDeps.empty()) {
|
2016-06-07 00:53:32 +03:00
|
|
|
fout << "\t\t\t\t\tAdditionalDependencies=\"" << fc.AdditionalDeps
|
|
|
|
<< "\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!fc.ObjectName.empty()) {
|
2016-06-07 00:53:32 +03:00
|
|
|
fout << "\t\t\t\t\tObjectFile=\"$(IntDir)/" << fc.ObjectName
|
|
|
|
<< "\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-07-13 19:21:30 +04:00
|
|
|
fout << "\t\t\t\t\t/>\n"
|
|
|
|
<< "\t\t\t\t</FileConfiguration>\n";
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\t\t\t</File>\n";
|
2005-07-13 19:21:30 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2013-02-04 13:35:48 +04:00
|
|
|
// If the group has children with source files, write the children.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (hasChildrenWithSources) {
|
2013-02-04 13:35:48 +04:00
|
|
|
fout << tmpOut.str();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2006-03-10 21:06:26 +03:00
|
|
|
|
2005-07-13 19:21:30 +04:00
|
|
|
// If the group has a name, write the footer.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (name != "") {
|
2005-07-13 19:21:30 +04:00
|
|
|
this->WriteVCProjEndGroup(fout);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2013-02-04 13:35:48 +04:00
|
|
|
|
|
|
|
return true;
|
2006-03-10 21:06:26 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteCustomRule(
|
|
|
|
std::ostream& fout, std::vector<std::string> const& configs,
|
|
|
|
const char* source, const cmCustomCommand& command, FCInfo& fcinfo)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2014-07-18 00:58:34 +04:00
|
|
|
cmGlobalVisualStudio7Generator* gg =
|
2016-05-16 17:34:04 +03:00
|
|
|
static_cast<cmGlobalVisualStudio7Generator*>(this->GlobalGenerator);
|
2014-07-18 00:58:34 +04:00
|
|
|
|
2006-04-11 19:06:19 +04:00
|
|
|
// Write the rule for each configuration.
|
2008-04-30 21:26:04 +04:00
|
|
|
const char* compileTool = "VCCLCompilerTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
compileTool = "VFCLCompilerTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-04-30 21:26:04 +04:00
|
|
|
const char* customTool = "VCCustomBuildTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
customTool = "VFCustomBuildTool";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-05-20 20:55:21 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = configs.begin();
|
2016-05-16 17:34:04 +03:00
|
|
|
i != configs.end(); ++i) {
|
2015-07-25 18:52:10 +03:00
|
|
|
cmCustomCommandGenerator ccg(command, *i, this);
|
2008-01-14 17:20:58 +03:00
|
|
|
cmLVS7GFileConfig const& fc = fcinfo.FileConfigMap[*i];
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\t\t\t\t<FileConfiguration\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << "\t\t\t\t\tName=\"" << *i << "|" << gg->GetPlatformName()
|
|
|
|
<< "\">\n";
|
|
|
|
if (!fc.CompileFlags.empty()) {
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\t\t\t\t\t<Tool\n"
|
2008-04-30 21:26:04 +04:00
|
|
|
<< "\t\t\t\t\tName=\"" << compileTool << "\"\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "\t\t\t\t\tAdditionalOptions=\""
|
2008-01-14 17:20:58 +03:00
|
|
|
<< this->EscapeForXML(fc.CompileFlags.c_str()) << "\"/>\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-05-09 16:25:45 +04:00
|
|
|
|
2014-03-10 23:47:19 +04:00
|
|
|
std::string comment = this->ConstructComment(ccg);
|
|
|
|
std::string script = this->ConstructScript(ccg);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2011-08-04 01:24:43 +04:00
|
|
|
cmSystemTools::ReplaceString(script, "$(Configuration)", i->c_str());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\t\t\t\t\t<Tool\n"
|
2008-04-30 21:26:04 +04:00
|
|
|
<< "\t\t\t\t\tName=\"" << customTool << "\"\n"
|
2012-08-13 21:42:58 +04:00
|
|
|
<< "\t\t\t\t\tDescription=\""
|
2007-05-09 16:25:45 +04:00
|
|
|
<< this->EscapeForXML(comment.c_str()) << "\"\n"
|
2012-08-13 21:42:58 +04:00
|
|
|
<< "\t\t\t\t\tCommandLine=\""
|
2007-05-09 16:25:45 +04:00
|
|
|
<< this->EscapeForXML(script.c_str()) << "\"\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "\t\t\t\t\tAdditionalDependencies=\"";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-05-16 17:34:04 +03:00
|
|
|
if (ccg.GetDepends().empty()) {
|
2006-08-26 06:56:41 +04:00
|
|
|
// There are no real dependencies. Produce an artificial one to
|
|
|
|
// make sure the rule runs reliably.
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmSystemTools::FileExists(source)) {
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ofstream depout(source);
|
2006-08-26 06:56:41 +04:00
|
|
|
depout << "Artificial dependency for a custom command.\n";
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
fout << this->ConvertToXMLOutputPath(source);
|
|
|
|
} else {
|
2006-08-26 06:56:41 +04:00
|
|
|
// Write out the dependencies for the rule.
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator d =
|
|
|
|
ccg.GetDepends().begin();
|
|
|
|
d != ccg.GetDepends().end(); ++d) {
|
2006-08-26 18:22:23 +04:00
|
|
|
// Get the real name of the dependency in case it is a CMake target.
|
2010-12-09 00:51:16 +03:00
|
|
|
std::string dep;
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->GetRealDependency(d->c_str(), i->c_str(), dep)) {
|
|
|
|
fout << this->ConvertToXMLOutputPath(dep.c_str()) << ";";
|
2006-08-26 06:56:41 +04:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\"\n";
|
|
|
|
fout << "\t\t\t\t\tOutputs=\"";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (ccg.GetOutputs().empty()) {
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << source << "_force";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
2006-04-11 19:06:19 +04:00
|
|
|
// Write a rule for the output generated by this command.
|
|
|
|
const char* sep = "";
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator o =
|
|
|
|
ccg.GetOutputs().begin();
|
|
|
|
o != ccg.GetOutputs().end(); ++o) {
|
2006-04-11 19:06:19 +04:00
|
|
|
fout << sep << this->ConvertToXMLOutputPathSingle(o->c_str());
|
|
|
|
sep = ";";
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\"/>\n";
|
|
|
|
fout << "\t\t\t\t</FileConfiguration>\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2006-03-10 21:06:26 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteVCProjBeginGroup(std::ostream& fout,
|
2005-07-13 19:21:30 +04:00
|
|
|
const char* group,
|
2016-05-16 17:34:04 +03:00
|
|
|
const char*)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2002-09-04 23:23:56 +04:00
|
|
|
fout << "\t\t<Filter\n"
|
|
|
|
<< "\t\t\tName=\"" << group << "\"\n"
|
|
|
|
<< "\t\t\tFilter=\"\">\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void cmLocalVisualStudio7Generator::WriteVCProjEndGroup(std::ostream& fout)
|
|
|
|
{
|
|
|
|
fout << "\t\t</Filter>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// look for custom rules on a target and collect them together
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7Generator::OutputTargetRules(
|
|
|
|
std::ostream& fout, const std::string& configName, cmGeneratorTarget* target,
|
|
|
|
const std::string& /*libName*/)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (target->GetType() > cmState::GLOBAL_TARGET) {
|
2002-09-04 23:23:56 +04:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-06-12 23:28:48 +04:00
|
|
|
EventWriter event(this, configName, fout);
|
|
|
|
|
|
|
|
// Add pre-build event.
|
|
|
|
const char* tool =
|
2016-05-16 17:34:04 +03:00
|
|
|
this->FortranProject ? "VFPreBuildEventTool" : "VCPreBuildEventTool";
|
2009-06-12 23:28:48 +04:00
|
|
|
event.Start(tool);
|
2015-10-23 01:42:58 +03:00
|
|
|
event.Write(target->GetPreBuildCommands());
|
2009-06-12 23:28:48 +04:00
|
|
|
event.Finish();
|
|
|
|
|
|
|
|
// Add pre-link event.
|
2016-05-16 17:34:04 +03:00
|
|
|
tool = this->FortranProject ? "VFPreLinkEventTool" : "VCPreLinkEventTool";
|
2009-06-12 23:28:48 +04:00
|
|
|
event.Start(tool);
|
2015-06-19 23:12:43 +03:00
|
|
|
bool addedPrelink = false;
|
2016-07-10 20:24:43 +03:00
|
|
|
if ((target->GetType() == cmState::SHARED_LIBRARY ||
|
|
|
|
target->IsExecutableWithExports()) &&
|
2016-05-16 17:34:04 +03:00
|
|
|
this->Makefile->IsOn("CMAKE_SUPPORT_WINDOWS_EXPORT_ALL_SYMBOLS")) {
|
|
|
|
if (target->GetPropertyAsBool("WINDOWS_EXPORT_ALL_SYMBOLS")) {
|
2015-06-19 23:12:43 +03:00
|
|
|
addedPrelink = true;
|
2016-05-16 17:34:04 +03:00
|
|
|
std::vector<cmCustomCommand> commands = target->GetPreLinkCommands();
|
|
|
|
cmGlobalVisualStudioGenerator* gg =
|
|
|
|
static_cast<cmGlobalVisualStudioGenerator*>(this->GlobalGenerator);
|
|
|
|
gg->AddSymbolExportCommand(target, commands, configName);
|
2015-06-19 23:12:43 +03:00
|
|
|
event.Write(commands);
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (!addedPrelink) {
|
2015-10-23 01:42:58 +03:00
|
|
|
event.Write(target->GetPreLinkCommands());
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-06-28 17:17:52 +03:00
|
|
|
CM_AUTO_PTR<cmCustomCommand> pcc(
|
2016-05-16 17:34:04 +03:00
|
|
|
this->MaybeCreateImplibDir(target, configName, this->FortranProject));
|
|
|
|
if (pcc.get()) {
|
2009-06-16 19:44:19 +04:00
|
|
|
event.Write(*pcc);
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2009-06-12 23:28:48 +04:00
|
|
|
event.Finish();
|
|
|
|
|
|
|
|
// Add post-build event.
|
2016-05-16 17:34:04 +03:00
|
|
|
tool =
|
|
|
|
this->FortranProject ? "VFPostBuildEventTool" : "VCPostBuildEventTool";
|
2009-06-12 23:28:48 +04:00
|
|
|
event.Start(tool);
|
2015-10-23 01:42:58 +03:00
|
|
|
event.Write(target->GetPostBuildCommands());
|
2009-06-12 23:28:48 +04:00
|
|
|
event.Finish();
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2011-01-17 23:41:24 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteProjectSCC(std::ostream& fout,
|
2015-10-22 19:27:58 +03:00
|
|
|
cmGeneratorTarget* target)
|
2011-01-17 23:41:24 +03:00
|
|
|
{
|
|
|
|
// if we have all the required Source code control tags
|
|
|
|
// then add that to the project
|
2015-10-22 19:27:58 +03:00
|
|
|
const char* vsProjectname = target->GetProperty("VS_SCC_PROJECTNAME");
|
|
|
|
const char* vsLocalpath = target->GetProperty("VS_SCC_LOCALPATH");
|
|
|
|
const char* vsProvider = target->GetProperty("VS_SCC_PROVIDER");
|
2011-11-01 04:04:08 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (vsProvider && vsLocalpath && vsProjectname) {
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2011-01-17 23:41:24 +03:00
|
|
|
fout << "\tSccProjectName=\"" << vsProjectname << "\"\n"
|
|
|
|
<< "\tSccLocalPath=\"" << vsLocalpath << "\"\n"
|
|
|
|
<< "\tSccProvider=\"" << vsProvider << "\"\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2011-11-01 04:04:08 +04:00
|
|
|
|
2015-10-22 19:27:58 +03:00
|
|
|
const char* vsAuxPath = target->GetProperty("VS_SCC_AUXPATH");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (vsAuxPath) {
|
2011-11-01 04:04:08 +04:00
|
|
|
fout << "\tSccAuxPath=\"" << vsAuxPath << "\"\n";
|
2011-01-17 23:41:24 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-01-17 23:41:24 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteProjectStartFortran(
|
|
|
|
std::ostream& fout, const std::string& libName, cmGeneratorTarget* target)
|
2008-04-30 21:26:04 +04:00
|
|
|
{
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2008-04-30 21:26:04 +04:00
|
|
|
cmGlobalVisualStudio7Generator* gg =
|
2016-05-16 17:34:04 +03:00
|
|
|
static_cast<cmGlobalVisualStudio7Generator*>(this->GlobalGenerator);
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2014-03-14 18:48:42 +04:00
|
|
|
fout << "<?xml version=\"1.0\" encoding = \""
|
|
|
|
<< gg->Encoding() << "\"?>\n"
|
2008-04-30 21:26:04 +04:00
|
|
|
<< "<VisualStudioProject\n"
|
|
|
|
<< "\tProjectCreator=\"Intel Fortran\"\n"
|
2013-10-16 23:48:44 +04:00
|
|
|
<< "\tVersion=\"" << gg->GetIntelProjectVersion() << "\"\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2015-10-22 19:27:58 +03:00
|
|
|
const char* keyword = target->GetProperty("VS_KEYWORD");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!keyword) {
|
2008-04-30 21:26:04 +04:00
|
|
|
keyword = "Console Application";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-04-30 21:26:04 +04:00
|
|
|
const char* projectType = 0;
|
2016-05-16 17:34:04 +03:00
|
|
|
switch (target->GetType()) {
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::STATIC_LIBRARY:
|
2008-04-30 21:26:04 +04:00
|
|
|
projectType = "typeStaticLibrary";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (keyword) {
|
2008-04-30 21:26:04 +04:00
|
|
|
keyword = "Static Library";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-04-30 21:26:04 +04:00
|
|
|
break;
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::SHARED_LIBRARY:
|
|
|
|
case cmState::MODULE_LIBRARY:
|
2008-04-30 21:26:04 +04:00
|
|
|
projectType = "typeDynamicLibrary";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!keyword) {
|
2008-04-30 21:26:04 +04:00
|
|
|
keyword = "Dll";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-04-30 21:26:04 +04:00
|
|
|
break;
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::EXECUTABLE:
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!keyword) {
|
2008-04-30 21:26:04 +04:00
|
|
|
keyword = "Console Application";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-04-30 21:26:04 +04:00
|
|
|
projectType = 0;
|
|
|
|
break;
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::UTILITY:
|
|
|
|
case cmState::GLOBAL_TARGET:
|
2008-04-30 21:26:04 +04:00
|
|
|
default:
|
|
|
|
break;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
|
|
|
if (projectType) {
|
2008-09-04 00:22:55 +04:00
|
|
|
fout << "\tProjectType=\"" << projectType << "\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-01-17 23:41:24 +03:00
|
|
|
this->WriteProjectSCC(fout, target);
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2012-08-13 21:42:58 +04:00
|
|
|
fout<< "\tKeyword=\"" << keyword << "\">\n"
|
2014-02-07 02:31:47 +04:00
|
|
|
<< "\tProjectGUID=\"{" << gg->GetGUID(libName.c_str()) << "}\">\n"
|
2008-04-30 21:26:04 +04:00
|
|
|
<< "\t<Platforms>\n"
|
2014-07-18 00:58:34 +04:00
|
|
|
<< "\t\t<Platform\n\t\t\tName=\"" << gg->GetPlatformName() << "\"/>\n"
|
2008-04-30 21:26:04 +04:00
|
|
|
<< "\t</Platforms>\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2008-04-30 21:26:04 +04:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteProjectStart(
|
|
|
|
std::ostream& fout, const std::string& libName, cmGeneratorTarget* target,
|
|
|
|
std::vector<cmSourceGroup>&)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->FortranProject) {
|
2008-04-30 21:26:04 +04:00
|
|
|
this->WriteProjectStartFortran(fout, libName, target);
|
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2014-03-14 18:48:42 +04:00
|
|
|
|
|
|
|
cmGlobalVisualStudio7Generator* gg =
|
2016-05-16 17:34:04 +03:00
|
|
|
static_cast<cmGlobalVisualStudio7Generator*>(this->GlobalGenerator);
|
2014-03-14 18:48:42 +04:00
|
|
|
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2014-03-14 18:48:42 +04:00
|
|
|
fout << "<?xml version=\"1.0\" encoding = \""
|
|
|
|
<< gg->Encoding() << "\"?>\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "<VisualStudioProject\n"
|
2003-05-09 00:59:27 +04:00
|
|
|
<< "\tProjectType=\"Visual C++\"\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-05-16 17:34:04 +03:00
|
|
|
if (gg->GetVersion() == cmGlobalVisualStudioGenerator::VS71) {
|
2003-05-09 00:59:27 +04:00
|
|
|
fout << "\tVersion=\"7.10\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
} else {
|
|
|
|
fout << "\tVersion=\"" << (gg->GetVersion() / 10) << ".00\"\n";
|
|
|
|
}
|
2015-10-22 19:27:58 +03:00
|
|
|
const char* projLabel = target->GetProperty("PROJECT_LABEL");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!projLabel) {
|
2014-02-07 02:31:47 +04:00
|
|
|
projLabel = libName.c_str();
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2015-10-22 19:27:58 +03:00
|
|
|
const char* keyword = target->GetProperty("VS_KEYWORD");
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!keyword) {
|
2005-11-19 17:40:11 +03:00
|
|
|
keyword = "Win32Proj";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2005-11-22 21:37:42 +03:00
|
|
|
fout << "\tName=\"" << projLabel << "\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
if (gg->GetVersion() >= cmGlobalVisualStudioGenerator::VS8) {
|
2014-02-07 02:31:47 +04:00
|
|
|
fout << "\tProjectGUID=\"{" << gg->GetGUID(libName.c_str()) << "}\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-01-17 23:41:24 +03:00
|
|
|
this->WriteProjectSCC(fout, target);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (const char* targetFrameworkVersion =
|
|
|
|
target->GetProperty("VS_DOTNET_TARGET_FRAMEWORK_VERSION")) {
|
2013-10-21 17:35:09 +04:00
|
|
|
fout << "\tTargetFrameworkVersion=\"" << targetFrameworkVersion << "\"\n";
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2008-10-08 00:23:20 +04:00
|
|
|
fout << "\tKeyword=\"" << keyword << "\">\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "\t<Platforms>\n"
|
2014-07-18 00:58:34 +04:00
|
|
|
<< "\t\t<Platform\n\t\t\tName=\"" << gg->GetPlatformName() << "\"/>\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "\t</Platforms>\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-05-16 17:34:04 +03:00
|
|
|
if (gg->IsMasmEnabled()) {
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2014-08-07 23:20:49 +04:00
|
|
|
fout <<
|
|
|
|
"\t<ToolFiles>\n"
|
|
|
|
"\t\t<DefaultToolFile\n"
|
|
|
|
"\t\t\tFileName=\"masm.rules\"\n"
|
|
|
|
"\t\t/>\n"
|
|
|
|
"\t</ToolFiles>\n"
|
|
|
|
;
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-04 23:23:56 +04:00
|
|
|
}
|
|
|
|
|
2015-10-22 19:27:58 +03:00
|
|
|
void cmLocalVisualStudio7Generator::WriteVCProjFooter(
|
2016-05-16 17:34:04 +03:00
|
|
|
std::ostream& fout, cmGeneratorTarget* target)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2011-07-29 18:04:36 +04:00
|
|
|
fout << "\t<Globals>\n";
|
|
|
|
|
2015-10-25 12:35:36 +03:00
|
|
|
std::vector<std::string> const& props = target->GetPropertyKeys();
|
2016-05-16 17:34:04 +03:00
|
|
|
for (std::vector<std::string>::const_iterator i = props.begin();
|
|
|
|
i != props.end(); ++i) {
|
|
|
|
if (i->find("VS_GLOBAL_") == 0) {
|
2015-10-25 12:35:36 +03:00
|
|
|
std::string name = i->substr(10);
|
2016-05-16 17:34:04 +03:00
|
|
|
if (name != "") {
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format off */
|
2011-07-29 18:04:36 +04:00
|
|
|
fout << "\t\t<Global\n"
|
|
|
|
<< "\t\t\tName=\"" << name << "\"\n"
|
2015-10-25 12:35:36 +03:00
|
|
|
<< "\t\t\tValue=\"" << target->GetProperty(*i) << "\"\n"
|
2011-07-29 18:04:36 +04:00
|
|
|
<< "\t\t/>\n";
|
2016-05-06 21:19:04 +03:00
|
|
|
/* clang-format on */
|
2011-07-29 18:04:36 +04:00
|
|
|
}
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-07-29 18:04:36 +04:00
|
|
|
|
|
|
|
fout << "\t</Globals>\n"
|
2002-09-04 23:23:56 +04:00
|
|
|
<< "</VisualStudioProject>\n";
|
|
|
|
}
|
|
|
|
|
2014-02-08 09:29:59 +04:00
|
|
|
std::string cmLocalVisualStudio7GeneratorEscapeForXML(const std::string& s)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2003-02-07 22:04:16 +03:00
|
|
|
std::string ret = s;
|
2003-08-06 00:04:53 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "&", "&");
|
2003-08-07 17:19:39 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "\"", """);
|
2003-08-06 00:04:53 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "<", "<");
|
|
|
|
cmSystemTools::ReplaceString(ret, ">", ">");
|
2005-11-17 23:57:51 +03:00
|
|
|
cmSystemTools::ReplaceString(ret, "\n", "
");
|
2002-09-04 23:23:56 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-08 09:29:59 +04:00
|
|
|
std::string cmLocalVisualStudio7Generator::EscapeForXML(const std::string& s)
|
2007-02-01 19:49:27 +03:00
|
|
|
{
|
|
|
|
return cmLocalVisualStudio7GeneratorEscapeForXML(s);
|
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string cmLocalVisualStudio7Generator::ConvertToXMLOutputPath(
|
|
|
|
const char* path)
|
2003-02-07 22:04:16 +03:00
|
|
|
{
|
2016-05-20 00:11:40 +03:00
|
|
|
std::string ret =
|
|
|
|
this->ConvertToOutputFormat(path, cmOutputConverter::SHELL);
|
2003-08-06 00:04:53 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "&", "&");
|
2003-08-07 17:19:39 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "\"", """);
|
2003-08-06 00:04:53 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "<", "<");
|
|
|
|
cmSystemTools::ReplaceString(ret, ">", ">");
|
2003-06-24 23:24:30 +04:00
|
|
|
return ret;
|
2003-02-07 22:04:16 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string cmLocalVisualStudio7Generator::ConvertToXMLOutputPathSingle(
|
|
|
|
const char* path)
|
2002-09-04 23:23:56 +04:00
|
|
|
{
|
2016-05-20 00:11:40 +03:00
|
|
|
std::string ret =
|
|
|
|
this->ConvertToOutputFormat(path, cmOutputConverter::SHELL);
|
2002-09-04 23:23:56 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "\"", "");
|
2003-08-06 00:04:53 +04:00
|
|
|
cmSystemTools::ReplaceString(ret, "&", "&");
|
|
|
|
cmSystemTools::ReplaceString(ret, "<", "<");
|
|
|
|
cmSystemTools::ReplaceString(ret, ">", ">");
|
2002-09-04 23:23:56 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-01-31 21:34:18 +03:00
|
|
|
// This class is used to parse an existing vs 7 project
|
2012-08-13 21:42:58 +04:00
|
|
|
// and extract the GUID
|
2007-01-31 21:34:18 +03:00
|
|
|
class cmVS7XMLParser : public cmXMLParser
|
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
virtual void EndElement(const std::string& /* name */) {}
|
2014-02-22 04:05:55 +04:00
|
|
|
virtual void StartElement(const std::string& name, const char** atts)
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
// once the GUID is found do nothing
|
|
|
|
if (!this->GUID.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int i = 0;
|
|
|
|
if ("VisualStudioProject" == name) {
|
|
|
|
while (atts[i]) {
|
|
|
|
if (strcmp(atts[i], "ProjectGUID") == 0) {
|
|
|
|
if (atts[i + 1]) {
|
|
|
|
this->GUID = atts[i + 1];
|
|
|
|
this->GUID = this->GUID.substr(1, this->GUID.size() - 2);
|
|
|
|
} else {
|
|
|
|
this->GUID = "";
|
2007-01-31 21:34:18 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
return;
|
2012-08-13 21:42:58 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
++i;
|
|
|
|
}
|
2007-01-31 21:34:18 +03:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-01-31 21:34:18 +03:00
|
|
|
int InitializeParser()
|
2016-05-16 17:34:04 +03:00
|
|
|
{
|
|
|
|
int ret = cmXMLParser::InitializeParser();
|
|
|
|
if (ret == 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
// visual studio projects have a strange encoding, but it is
|
|
|
|
// really utf-8
|
|
|
|
XML_SetEncoding(static_cast<XML_Parser>(this->Parser), "utf-8");
|
|
|
|
return 1;
|
|
|
|
}
|
2007-01-31 21:34:18 +03:00
|
|
|
std::string GUID;
|
|
|
|
};
|
|
|
|
|
|
|
|
void cmLocalVisualStudio7Generator::ReadAndStoreExternalGUID(
|
2016-05-16 17:34:04 +03:00
|
|
|
const std::string& name, const char* path)
|
2007-01-31 21:34:18 +03:00
|
|
|
{
|
|
|
|
cmVS7XMLParser parser;
|
|
|
|
parser.ParseFile(path);
|
2015-06-02 18:49:07 +03:00
|
|
|
// if we can not find a GUID then we will generate one later
|
2016-05-16 17:34:04 +03:00
|
|
|
if (parser.GUID.empty()) {
|
2007-01-31 21:34:18 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-01-31 21:34:18 +03:00
|
|
|
std::string guidStoreName = name;
|
|
|
|
guidStoreName += "_GUID_CMAKE";
|
|
|
|
// save the GUID in the cache
|
2016-05-16 17:34:04 +03:00
|
|
|
this->GlobalGenerator->GetCMakeInstance()->AddCacheEntry(
|
|
|
|
guidStoreName.c_str(), parser.GUID.c_str(), "Stored GUID",
|
|
|
|
cmState::INTERNAL);
|
2007-01-31 21:34:18 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string cmLocalVisualStudio7Generator::GetTargetDirectory(
|
|
|
|
cmGeneratorTarget const* target) const
|
2005-07-27 21:36:36 +04:00
|
|
|
{
|
|
|
|
std::string dir;
|
2015-10-09 23:27:46 +03:00
|
|
|
dir += target->GetName();
|
2005-07-27 21:36:36 +04:00
|
|
|
dir += ".dir";
|
|
|
|
return dir;
|
|
|
|
}
|
2007-02-01 19:49:27 +03:00
|
|
|
|
2008-03-31 18:59:02 +04:00
|
|
|
#include <windows.h>
|
2016-03-09 17:42:04 +03:00
|
|
|
static bool cmLVS7G_IsFAT(const char* dir)
|
2008-03-31 18:59:02 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (dir[0] && dir[1] == ':') {
|
2008-03-31 18:59:02 +04:00
|
|
|
char volRoot[4] = "_:/";
|
|
|
|
volRoot[0] = dir[0];
|
|
|
|
char fsName[16];
|
2016-05-16 17:34:04 +03:00
|
|
|
if (GetVolumeInformationA(volRoot, 0, 0, 0, 0, 0, fsName, 16) &&
|
|
|
|
strstr(fsName, "FAT") != 0) {
|
2008-03-31 18:59:02 +04:00
|
|
|
return true;
|
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2008-03-31 18:59:02 +04:00
|
|
|
return false;
|
|
|
|
}
|