cmake/Source/cmExtraEclipseCDT4Generator.h

108 lines
3.5 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2021-09-14 00:13:48 +02:00
#pragma once
2018-01-26 17:06:56 +01:00
#include "cmConfigure.h" // IWYU pragma: keep
2016-10-30 18:24:19 +01:00
#include <iosfwd>
#include <set>
#include <string>
#include <vector>
2020-02-01 23:06:01 +01:00
#include "cmExternalMakefileProjectGenerator.h"
2016-10-30 18:24:19 +01:00
class cmLocalGenerator;
class cmMakefile;
2016-07-09 11:21:54 +02:00
class cmSourceGroup;
2016-10-30 18:24:19 +01:00
class cmXMLWriter;
/** \class cmExtraEclipseCDT4Generator
* \brief Write Eclipse project files for Makefile based projects
*/
class cmExtraEclipseCDT4Generator : public cmExternalMakefileProjectGenerator
{
public:
2016-07-09 11:21:54 +02:00
enum LinkType
{
VirtualFolder,
LinkToFolder,
LinkToFile
};
2012-02-18 12:40:36 +02:00
cmExtraEclipseCDT4Generator();
2016-10-30 18:24:19 +01:00
static cmExternalMakefileProjectGeneratorFactory* GetFactory();
2016-10-30 18:24:19 +01:00
void EnableLanguage(std::vector<std::string> const& languages, cmMakefile*,
2018-01-26 17:06:56 +01:00
bool optional) override;
2018-01-26 17:06:56 +01:00
void Generate() override;
private:
// create .project file in the source tree
2012-02-18 12:40:36 +02:00
void CreateSourceProjectFile();
2020-02-01 23:06:01 +01:00
// create .settings/org.eclipse.core.resources.prefs
void CreateSettingsResourcePrefsFile();
// create .project file
void CreateProjectFile();
// create .cproject file
void CreateCProjectFile() const;
// If built with cygwin cmake, convert posix to windows path.
static std::string GetEclipsePath(const std::string& path);
// Extract basename.
static std::string GetPathBasename(const std::string& path);
// Generate the project name as: <name>-<type>@<path>
static std::string GenerateProjectName(const std::string& name,
const std::string& type,
const std::string& path);
// Helper functions
2016-07-09 11:21:54 +02:00
static void AppendStorageScanners(cmXMLWriter& xml,
const cmMakefile& makefile);
2016-07-09 11:21:54 +02:00
static void AppendTarget(cmXMLWriter& xml, const std::string& target,
const std::string& make,
const std::string& makeArguments,
const std::string& path, const char* prefix = "",
2018-01-26 17:06:56 +01:00
const char* makeTarget = nullptr);
2016-07-09 11:21:54 +02:00
static void AppendScannerProfile(
cmXMLWriter& xml, const std::string& profileID, bool openActionEnabled,
const std::string& openActionFilePath, bool pParserEnabled,
const std::string& scannerInfoProviderID,
const std::string& runActionArguments, const std::string& runActionCommand,
bool runActionUseDefault, bool sipParserEnabled);
static void AppendLinkedResource(cmXMLWriter& xml, const std::string& name,
const std::string& path, LinkType linkType);
static void AppendIncludeDirectories(
cmXMLWriter& xml, const std::vector<std::string>& includeDirs,
std::set<std::string>& emittedDirs);
static void AddEnvVar(std::ostream& out, const char* envVar,
2020-08-30 11:54:41 +02:00
cmLocalGenerator& lg);
2010-03-17 14:00:29 +02:00
2016-07-09 11:21:54 +02:00
void WriteGroups(std::vector<cmSourceGroup> const& sourceGroups,
std::string& linkName, cmXMLWriter& xml);
void CreateLinksToSubprojects(cmXMLWriter& xml, const std::string& baseDir);
void CreateLinksForTargets(cmXMLWriter& xml);
2012-02-18 12:40:36 +02:00
std::vector<std::string> SrcLinkedResources;
2014-08-03 19:52:23 +02:00
std::set<std::string> Natures;
std::string HomeDirectory;
std::string HomeOutputDirectory;
bool IsOutOfSourceBuild;
bool GenerateSourceProject;
2013-03-16 19:13:01 +02:00
bool GenerateLinkedResources;
2012-02-18 12:40:36 +02:00
bool SupportsVirtualFolders;
2013-11-03 12:27:13 +02:00
bool SupportsGmakeErrorParser;
2014-08-03 19:52:23 +02:00
bool SupportsMachO64Parser;
2016-07-09 11:21:54 +02:00
bool CEnabled;
bool CXXEnabled;
};