2012-10-11 02:01:48 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2004-2009 Kitware, Inc.
|
|
|
|
Copyright 2004 Alexander Neundorf (neundorf@kde.org)
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
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.
|
|
|
|
============================================================================*/
|
|
|
|
#include "cmExtraSublimeTextGenerator.h"
|
2013-02-12 02:23:02 +04:00
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
|
|
|
#include "cmGeneratorTarget.h"
|
2012-10-11 02:01:48 +04:00
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
2013-02-12 02:23:02 +04:00
|
|
|
#include "cmLocalGenerator.h"
|
2012-10-11 02:01:48 +04:00
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmSourceFile.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
|
|
|
|
#include <cmsys/SystemTools.hxx>
|
|
|
|
|
2012-10-13 13:20:09 +04:00
|
|
|
/*
|
|
|
|
Sublime Text 2 Generator
|
|
|
|
Author: Morné Chamberlain
|
|
|
|
This generator was initially based off of the CodeBlocks generator.
|
|
|
|
|
|
|
|
Some useful URLs:
|
2012-10-11 02:01:48 +04:00
|
|
|
Homepage:
|
|
|
|
http://www.sublimetext.com/
|
|
|
|
|
|
|
|
File format docs:
|
|
|
|
http://www.sublimetext.com/docs/2/projects.html
|
|
|
|
http://sublimetext.info/docs/en/reference/build_systems.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmExtraSublimeTextGenerator
|
2014-02-25 02:36:27 +04:00
|
|
|
::GetDocumentation(cmDocumentationEntry& entry, const std::string&) const
|
2012-10-11 02:01:48 +04:00
|
|
|
{
|
|
|
|
entry.Name = this->GetName();
|
|
|
|
entry.Brief = "Generates Sublime Text 2 project files.";
|
|
|
|
}
|
|
|
|
|
|
|
|
cmExtraSublimeTextGenerator::cmExtraSublimeTextGenerator()
|
|
|
|
:cmExternalMakefileProjectGenerator()
|
|
|
|
{
|
|
|
|
#if defined(_WIN32)
|
|
|
|
this->SupportedGlobalGenerators.push_back("MinGW Makefiles");
|
|
|
|
this->SupportedGlobalGenerators.push_back("NMake Makefiles");
|
|
|
|
// disable until somebody actually tests it:
|
|
|
|
// this->SupportedGlobalGenerators.push_back("MSYS Makefiles");
|
|
|
|
#endif
|
|
|
|
this->SupportedGlobalGenerators.push_back("Ninja");
|
|
|
|
this->SupportedGlobalGenerators.push_back("Unix Makefiles");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmExtraSublimeTextGenerator::Generate()
|
|
|
|
{
|
|
|
|
// for each sub project in the project create a sublime text 2 project
|
2014-02-10 09:21:34 +04:00
|
|
|
for (std::map<std::string, std::vector<cmLocalGenerator*> >::const_iterator
|
2012-10-11 02:01:48 +04:00
|
|
|
it = this->GlobalGenerator->GetProjectMap().begin();
|
|
|
|
it!= this->GlobalGenerator->GetProjectMap().end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
// create a project file
|
|
|
|
this->CreateProjectFile(it->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmExtraSublimeTextGenerator::CreateProjectFile(
|
|
|
|
const std::vector<cmLocalGenerator*>& lgs)
|
|
|
|
{
|
2015-09-25 01:13:20 +03:00
|
|
|
std::string outputDir=lgs[0]->GetCurrentBinaryDirectory();
|
2015-10-07 01:29:25 +03:00
|
|
|
std::string projectName=lgs[0]->GetProjectName();
|
2012-10-11 02:01:48 +04:00
|
|
|
|
2013-02-06 22:31:44 +04:00
|
|
|
const std::string filename =
|
|
|
|
outputDir + "/" + projectName + ".sublime-project";
|
2012-10-11 02:01:48 +04:00
|
|
|
|
|
|
|
this->CreateNewProjectFile(lgs, filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmExtraSublimeTextGenerator
|
|
|
|
::CreateNewProjectFile(const std::vector<cmLocalGenerator*>& lgs,
|
|
|
|
const std::string& filename)
|
|
|
|
{
|
|
|
|
const cmMakefile* mf=lgs[0]->GetMakefile();
|
|
|
|
cmGeneratedFileStream fout(filename.c_str());
|
|
|
|
if(!fout)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-10-14 12:46:29 +04:00
|
|
|
const std::string &sourceRootRelativeToOutput = cmSystemTools::RelativePath(
|
2015-10-07 02:17:48 +03:00
|
|
|
lgs[0]->GetBinaryDirectory(),
|
|
|
|
lgs[0]->GetSourceDirectory());
|
2012-10-14 12:46:29 +04:00
|
|
|
// Write the folder entries to the project file
|
2012-10-12 00:53:40 +04:00
|
|
|
fout << "{\n";
|
|
|
|
fout << "\t\"folders\":\n\t[\n\t";
|
2012-10-14 19:37:51 +04:00
|
|
|
if (!sourceRootRelativeToOutput.empty())
|
|
|
|
{
|
|
|
|
fout << "\t{\n\t\t\t\"path\": \"" << sourceRootRelativeToOutput << "\"";
|
|
|
|
const std::string &outputRelativeToSourceRoot =
|
2015-10-07 02:17:48 +03:00
|
|
|
cmSystemTools::RelativePath(lgs[0]->GetSourceDirectory(),
|
|
|
|
lgs[0]->GetBinaryDirectory());
|
2012-10-19 00:54:19 +04:00
|
|
|
if ((!outputRelativeToSourceRoot.empty()) &&
|
|
|
|
((outputRelativeToSourceRoot.length() < 3) ||
|
|
|
|
(outputRelativeToSourceRoot.substr(0, 3) != "../")))
|
|
|
|
{
|
|
|
|
fout << ",\n\t\t\t\"folder_exclude_patterns\": [\"" <<
|
|
|
|
outputRelativeToSourceRoot << "\"]";
|
|
|
|
}
|
2012-10-14 19:37:51 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fout << "\t{\n\t\t\t\"path\": \"./\"";
|
|
|
|
}
|
|
|
|
fout << "\n\t\t}";
|
2012-10-12 00:53:40 +04:00
|
|
|
// End of the folders section
|
2012-10-14 19:37:51 +04:00
|
|
|
fout << "\n\t]";
|
2012-10-12 00:53:40 +04:00
|
|
|
|
|
|
|
// Write the beginning of the build systems section to the project file
|
|
|
|
fout << ",\n\t\"build_systems\":\n\t[\n\t";
|
|
|
|
|
|
|
|
// Set of include directories over all targets (sublime text/sublimeclang
|
|
|
|
// doesn't currently support these settings per build system, only project
|
|
|
|
// wide
|
2012-11-12 00:07:49 +04:00
|
|
|
MapSourceFileFlags sourceFileFlags;
|
|
|
|
AppendAllTargets(lgs, mf, fout, sourceFileFlags);
|
2013-02-06 22:31:44 +04:00
|
|
|
|
2012-10-12 00:53:40 +04:00
|
|
|
// End of build_systems
|
|
|
|
fout << "\n\t]";
|
2013-02-06 22:31:44 +04:00
|
|
|
fout << "\n\t}";
|
2012-11-24 22:19:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-12 00:53:40 +04:00
|
|
|
void cmExtraSublimeTextGenerator::
|
|
|
|
AppendAllTargets(const std::vector<cmLocalGenerator*>& lgs,
|
|
|
|
const cmMakefile* mf,
|
|
|
|
cmGeneratedFileStream& fout,
|
2012-11-12 00:07:49 +04:00
|
|
|
MapSourceFileFlags& sourceFileFlags)
|
2012-10-12 00:53:40 +04:00
|
|
|
{
|
2012-10-11 02:01:48 +04:00
|
|
|
std::string make = mf->GetRequiredDefinition("CMAKE_MAKE_PROGRAM");
|
|
|
|
std::string compiler = "";
|
2012-11-12 00:07:49 +04:00
|
|
|
if (!lgs.empty())
|
|
|
|
{
|
|
|
|
this->AppendTarget(fout, "all", lgs[0], 0, make.c_str(), mf,
|
|
|
|
compiler.c_str(), sourceFileFlags, true);
|
|
|
|
this->AppendTarget(fout, "clean", lgs[0], 0, make.c_str(), mf,
|
|
|
|
compiler.c_str(), sourceFileFlags, false);
|
|
|
|
}
|
2012-10-11 02:01:48 +04:00
|
|
|
|
|
|
|
// add all executable and library targets and some of the GLOBAL
|
|
|
|
// and UTILITY targets
|
|
|
|
for (std::vector<cmLocalGenerator*>::const_iterator lg=lgs.begin();
|
|
|
|
lg!=lgs.end(); lg++)
|
|
|
|
{
|
|
|
|
cmMakefile* makefile=(*lg)->GetMakefile();
|
2015-10-18 18:06:14 +03:00
|
|
|
std::vector<cmGeneratorTarget*> targets=(*lg)->GetGeneratorTargets();
|
|
|
|
for (std::vector<cmGeneratorTarget*>::iterator ti = targets.begin();
|
2012-10-11 02:01:48 +04:00
|
|
|
ti != targets.end(); ti++)
|
|
|
|
{
|
2015-10-18 18:06:14 +03:00
|
|
|
std::string targetName = (*ti)->GetName();
|
|
|
|
switch((*ti)->GetType())
|
2012-10-11 02:01:48 +04:00
|
|
|
{
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::GLOBAL_TARGET:
|
2012-10-11 02:01:48 +04:00
|
|
|
{
|
|
|
|
// Only add the global targets from CMAKE_BINARY_DIR,
|
|
|
|
// not from the subdirs
|
2015-10-07 02:17:48 +03:00
|
|
|
if (strcmp((*lg)->GetCurrentBinaryDirectory(),
|
|
|
|
(*lg)->GetBinaryDirectory())==0)
|
2012-10-11 02:01:48 +04:00
|
|
|
{
|
2015-10-18 18:06:14 +03:00
|
|
|
this->AppendTarget(fout, targetName, *lg, 0,
|
2012-10-11 02:01:48 +04:00
|
|
|
make.c_str(), makefile, compiler.c_str(),
|
2012-11-12 00:07:49 +04:00
|
|
|
sourceFileFlags, false);
|
2012-10-11 02:01:48 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::UTILITY:
|
2012-10-11 02:01:48 +04:00
|
|
|
// Add all utility targets, except the Nightly/Continuous/
|
|
|
|
// Experimental-"sub"targets as e.g. NightlyStart
|
2015-10-18 18:06:14 +03:00
|
|
|
if (((targetName.find("Nightly")==0) &&(targetName!="Nightly"))
|
|
|
|
|| ((targetName.find("Continuous")==0)
|
|
|
|
&&(targetName!="Continuous"))
|
|
|
|
|| ((targetName.find("Experimental")==0)
|
|
|
|
&& (targetName!="Experimental")))
|
2012-10-11 02:01:48 +04:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-10-18 18:06:14 +03:00
|
|
|
this->AppendTarget(fout, targetName, *lg, 0,
|
2012-10-11 03:01:13 +04:00
|
|
|
make.c_str(), makefile, compiler.c_str(),
|
2012-11-12 00:07:49 +04:00
|
|
|
sourceFileFlags, false);
|
2012-10-11 02:01:48 +04:00
|
|
|
break;
|
2015-10-08 01:21:51 +03:00
|
|
|
case cmState::EXECUTABLE:
|
|
|
|
case cmState::STATIC_LIBRARY:
|
|
|
|
case cmState::SHARED_LIBRARY:
|
|
|
|
case cmState::MODULE_LIBRARY:
|
|
|
|
case cmState::OBJECT_LIBRARY:
|
2012-10-11 02:01:48 +04:00
|
|
|
{
|
2015-10-19 00:53:26 +03:00
|
|
|
this->AppendTarget(fout, targetName, *lg, *ti,
|
2012-10-11 03:01:13 +04:00
|
|
|
make.c_str(), makefile, compiler.c_str(),
|
2012-11-12 00:07:49 +04:00
|
|
|
sourceFileFlags, false);
|
2015-10-18 18:06:14 +03:00
|
|
|
std::string fastTarget = targetName;
|
2012-10-11 02:01:48 +04:00
|
|
|
fastTarget += "/fast";
|
2015-10-19 00:53:26 +03:00
|
|
|
this->AppendTarget(fout, fastTarget, *lg, *ti,
|
2012-10-11 03:01:13 +04:00
|
|
|
make.c_str(), makefile, compiler.c_str(),
|
2012-11-12 00:07:49 +04:00
|
|
|
sourceFileFlags, false);
|
2012-10-11 02:01:48 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-19 00:54:19 +04:00
|
|
|
void cmExtraSublimeTextGenerator::
|
2012-11-12 00:07:49 +04:00
|
|
|
AppendTarget(cmGeneratedFileStream& fout,
|
2014-02-07 02:31:47 +04:00
|
|
|
const std::string& targetName,
|
2012-11-12 00:07:49 +04:00
|
|
|
cmLocalGenerator* lg,
|
2015-10-19 00:53:26 +03:00
|
|
|
cmGeneratorTarget* target,
|
2012-11-12 00:07:49 +04:00
|
|
|
const char* make,
|
|
|
|
const cmMakefile* makefile,
|
2013-02-12 02:23:02 +04:00
|
|
|
const char*, //compiler
|
2012-11-12 00:07:49 +04:00
|
|
|
MapSourceFileFlags& sourceFileFlags,
|
|
|
|
bool firstTarget)
|
2012-10-11 02:01:48 +04:00
|
|
|
{
|
2013-02-12 02:23:02 +04:00
|
|
|
|
2012-10-11 03:01:13 +04:00
|
|
|
if (target != 0)
|
|
|
|
{
|
2013-07-14 20:22:57 +04:00
|
|
|
std::vector<cmSourceFile*> sourceFiles;
|
2015-10-19 00:53:26 +03:00
|
|
|
target->GetSourceFiles(sourceFiles,
|
2014-02-13 20:25:00 +04:00
|
|
|
makefile->GetSafeDefinition("CMAKE_BUILD_TYPE"));
|
2012-11-12 00:07:49 +04:00
|
|
|
std::vector<cmSourceFile*>::const_iterator sourceFilesEnd =
|
|
|
|
sourceFiles.end();
|
|
|
|
for (std::vector<cmSourceFile*>::const_iterator iter =
|
|
|
|
sourceFiles.begin(); iter != sourceFilesEnd; ++iter)
|
2012-10-11 03:01:13 +04:00
|
|
|
{
|
2012-11-12 00:07:49 +04:00
|
|
|
cmSourceFile* sourceFile = *iter;
|
|
|
|
MapSourceFileFlags::iterator sourceFileFlagsIter =
|
|
|
|
sourceFileFlags.find(sourceFile->GetFullPath());
|
|
|
|
if (sourceFileFlagsIter == sourceFileFlags.end())
|
|
|
|
{
|
|
|
|
sourceFileFlagsIter =
|
|
|
|
sourceFileFlags.insert(MapSourceFileFlags::value_type(
|
|
|
|
sourceFile->GetFullPath(), std::vector<std::string>())).first;
|
|
|
|
}
|
|
|
|
std::vector<std::string>& flags = sourceFileFlagsIter->second;
|
|
|
|
std::string flagsString =
|
2015-10-19 00:53:26 +03:00
|
|
|
this->ComputeFlagsForObject(*iter, lg, target);
|
2012-11-12 00:07:49 +04:00
|
|
|
std::string definesString =
|
2015-10-19 00:53:26 +03:00
|
|
|
this->ComputeDefines(*iter, lg, target);
|
2012-11-12 00:07:49 +04:00
|
|
|
flags.clear();
|
|
|
|
cmsys::RegularExpression flagRegex;
|
2012-11-24 22:19:35 +04:00
|
|
|
// Regular expression to extract compiler flags from a string
|
2012-11-12 00:07:49 +04:00
|
|
|
// https://gist.github.com/3944250
|
|
|
|
const char* regexString =
|
|
|
|
"(^|[ ])-[DIOUWfgs][^= ]+(=\\\"[^\"]+\\\"|=[^\"][^ ]+)?";
|
|
|
|
flagRegex.compile(regexString);
|
|
|
|
std::string workString = flagsString + " " + definesString;
|
|
|
|
while (flagRegex.find(workString))
|
|
|
|
{
|
|
|
|
std::string::size_type start = flagRegex.start();
|
|
|
|
if (workString[start] == ' ')
|
|
|
|
{
|
|
|
|
start++;
|
|
|
|
}
|
|
|
|
flags.push_back(workString.substr(start,
|
|
|
|
flagRegex.end() - start));
|
|
|
|
if (flagRegex.end() < workString.size())
|
|
|
|
{
|
|
|
|
workString = workString.substr(flagRegex.end());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
workString = "";
|
|
|
|
}
|
|
|
|
}
|
2012-10-11 03:01:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-13 13:20:09 +04:00
|
|
|
// Ninja uses ninja.build files (look for a way to get the output file name
|
2012-10-14 14:11:32 +04:00
|
|
|
// from cmMakefile or something)
|
|
|
|
std::string makefileName;
|
2014-02-25 02:36:27 +04:00
|
|
|
if (this->GlobalGenerator->GetName() == "Ninja")
|
2012-10-13 13:20:09 +04:00
|
|
|
{
|
2012-10-14 14:11:32 +04:00
|
|
|
makefileName = "build.ninja";
|
2012-10-13 13:20:09 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-10-14 14:11:32 +04:00
|
|
|
makefileName = "Makefile";
|
2012-10-13 13:20:09 +04:00
|
|
|
}
|
2012-10-11 02:01:48 +04:00
|
|
|
if (!firstTarget)
|
|
|
|
{
|
|
|
|
fout << ",\n\t";
|
|
|
|
}
|
2015-10-07 01:29:25 +03:00
|
|
|
fout << "\t{\n\t\t\t\"name\": \"" << lg->GetProjectName() << " - " <<
|
2012-10-11 02:01:48 +04:00
|
|
|
targetName << "\",\n";
|
|
|
|
fout << "\t\t\t\"cmd\": [" <<
|
|
|
|
this->BuildMakeCommand(make, makefileName.c_str(), targetName) <<
|
|
|
|
"],\n";
|
|
|
|
fout << "\t\t\t\"working_dir\": \"${project_path}\",\n";
|
|
|
|
fout << "\t\t\t\"file_regex\": \"^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$\"\n";
|
|
|
|
fout << "\t\t}";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the command line for building the given target using the selected
|
|
|
|
// make
|
|
|
|
std::string cmExtraSublimeTextGenerator::BuildMakeCommand(
|
2014-02-07 02:31:47 +04:00
|
|
|
const std::string& make, const char* makefile,
|
|
|
|
const std::string& target)
|
2012-10-11 02:01:48 +04:00
|
|
|
{
|
|
|
|
std::string command = "\"";
|
|
|
|
command += make + "\"";
|
2014-02-25 02:36:27 +04:00
|
|
|
std::string generator = this->GlobalGenerator->GetName();
|
|
|
|
if (generator == "NMake Makefiles")
|
2012-10-11 02:01:48 +04:00
|
|
|
{
|
|
|
|
std::string makefileName = cmSystemTools::ConvertToOutputPath(makefile);
|
|
|
|
command += ", \"/NOLOGO\", \"/f\", \"";
|
|
|
|
command += makefileName + "\"";
|
|
|
|
command += ", \"VERBOSE=1\", \"";
|
|
|
|
command += target;
|
|
|
|
command += "\"";
|
|
|
|
}
|
2014-02-25 02:36:27 +04:00
|
|
|
else if (generator == "Ninja")
|
2012-10-11 02:01:48 +04:00
|
|
|
{
|
2012-10-13 13:20:09 +04:00
|
|
|
std::string makefileName = cmSystemTools::ConvertToOutputPath(makefile);
|
2012-10-11 02:01:48 +04:00
|
|
|
command += ", \"-f\", \"";
|
|
|
|
command += makefileName + "\"";
|
2012-10-13 13:20:09 +04:00
|
|
|
command += ", \"-v\", \"";
|
2012-10-11 02:01:48 +04:00
|
|
|
command += target;
|
|
|
|
command += "\"";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-10-13 13:20:09 +04:00
|
|
|
std::string makefileName;
|
2014-02-25 02:36:27 +04:00
|
|
|
if (generator == "MinGW Makefiles")
|
2012-10-13 13:20:09 +04:00
|
|
|
{
|
|
|
|
// no escaping of spaces in this case, see
|
|
|
|
// http://public.kitware.com/Bug/view.php?id=10014
|
|
|
|
makefileName = makefile;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
makefileName = cmSystemTools::ConvertToOutputPath(makefile);
|
|
|
|
}
|
2012-10-11 02:01:48 +04:00
|
|
|
command += ", \"-f\", \"";
|
|
|
|
command += makefileName + "\"";
|
|
|
|
command += ", \"VERBOSE=1\", \"";
|
|
|
|
command += target;
|
|
|
|
command += "\"";
|
|
|
|
}
|
|
|
|
return command;
|
|
|
|
}
|
2012-11-12 00:07:49 +04:00
|
|
|
|
|
|
|
// TODO: Most of the code is picked up from the Ninja generator, refactor it.
|
|
|
|
std::string
|
|
|
|
cmExtraSublimeTextGenerator::ComputeFlagsForObject(cmSourceFile* source,
|
|
|
|
cmLocalGenerator* lg,
|
|
|
|
cmGeneratorTarget* gtgt)
|
|
|
|
{
|
|
|
|
std::string flags;
|
|
|
|
|
|
|
|
cmMakefile *makefile = lg->GetMakefile();
|
2014-02-04 06:20:56 +04:00
|
|
|
std::string language = source->GetLanguage();
|
|
|
|
if (language.empty())
|
2012-11-12 00:07:49 +04:00
|
|
|
{
|
|
|
|
language = "C";
|
|
|
|
}
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config = makefile->GetSafeDefinition("CMAKE_BUILD_TYPE");
|
2012-11-12 00:07:49 +04:00
|
|
|
// Add language-specific flags.
|
|
|
|
lg->AddLanguageFlags(flags, language, config);
|
|
|
|
|
|
|
|
lg->AddArchitectureFlags(flags, gtgt, language, config);
|
|
|
|
|
|
|
|
// TODO: Fortran support.
|
|
|
|
// // Fortran-specific flags computed for this target.
|
|
|
|
// if(*l == "Fortran")
|
|
|
|
// {
|
|
|
|
// this->AddFortranFlags(flags);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// Add shared-library flags if needed.
|
2015-10-09 23:19:57 +03:00
|
|
|
lg->AddCMP0018Flags(flags, gtgt, language, config);
|
2012-11-12 00:07:49 +04:00
|
|
|
|
|
|
|
// Add include directory flags.
|
|
|
|
{
|
|
|
|
std::vector<std::string> includes;
|
|
|
|
lg->GetIncludeDirectories(includes, gtgt, language, config);
|
|
|
|
std::string includeFlags =
|
2013-07-02 00:28:26 +04:00
|
|
|
lg->GetIncludeFlags(includes, gtgt, language, true); // full include paths
|
2014-05-02 00:07:26 +04:00
|
|
|
lg->AppendFlags(flags, includeFlags);
|
2012-11-12 00:07:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Append old-style preprocessor definition flags.
|
|
|
|
lg->AppendFlags(flags, makefile->GetDefineFlags());
|
|
|
|
|
|
|
|
// Add target-specific flags.
|
2015-10-09 23:19:57 +03:00
|
|
|
lg->AddCompileOptions(flags, gtgt, language, config);
|
2012-11-12 00:07:49 +04:00
|
|
|
|
|
|
|
// Add source file specific flags.
|
2013-05-16 20:58:58 +04:00
|
|
|
lg->AppendFlags(flags, source->GetProperty("COMPILE_FLAGS"));
|
2012-11-12 00:07:49 +04:00
|
|
|
|
|
|
|
// TODO: Handle Apple frameworks.
|
|
|
|
|
|
|
|
return flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Refactor with
|
|
|
|
// void cmMakefileTargetGenerator::WriteTargetLanguageFlags().
|
|
|
|
std::string
|
|
|
|
cmExtraSublimeTextGenerator::
|
2015-10-09 23:04:51 +03:00
|
|
|
ComputeDefines(cmSourceFile *source, cmLocalGenerator* lg,
|
|
|
|
cmGeneratorTarget* target)
|
2012-11-12 00:07:49 +04:00
|
|
|
|
|
|
|
{
|
|
|
|
std::set<std::string> defines;
|
|
|
|
cmMakefile *makefile = lg->GetMakefile();
|
2014-02-04 06:20:56 +04:00
|
|
|
const std::string& language = source->GetLanguage();
|
2014-02-10 07:48:34 +04:00
|
|
|
const std::string& config = makefile->GetSafeDefinition("CMAKE_BUILD_TYPE");
|
2012-11-12 00:07:49 +04:00
|
|
|
|
|
|
|
// Add the export symbol definition for shared library objects.
|
2015-10-19 23:42:01 +03:00
|
|
|
if(const char* exportMacro = target->GetExportMacro())
|
2012-11-12 00:07:49 +04:00
|
|
|
{
|
|
|
|
lg->AppendDefines(defines, exportMacro);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add preprocessor definitions for this target and configuration.
|
2015-10-09 23:19:57 +03:00
|
|
|
lg->AddCompileDefinitions(defines, target, config, language);
|
2012-11-12 00:07:49 +04:00
|
|
|
lg->AppendDefines(defines, source->GetProperty("COMPILE_DEFINITIONS"));
|
|
|
|
{
|
|
|
|
std::string defPropName = "COMPILE_DEFINITIONS_";
|
|
|
|
defPropName += cmSystemTools::UpperCase(config);
|
2014-03-11 03:04:11 +04:00
|
|
|
lg->AppendDefines(defines, source->GetProperty(defPropName));
|
2012-11-12 00:07:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string definesString;
|
|
|
|
lg->JoinDefines(defines, definesString, language);
|
|
|
|
|
|
|
|
return definesString;
|
|
|
|
}
|