mirror of
https://github.com/reactos/CMake.git
synced 2025-02-03 18:42:32 +00:00
e6b0f452ee
With this patch, cmake now puts the MachO64 bit binary file parser into the config file if the detected Eclipse is at least Helios (7.0), otherwise with the old parser executables will not be recognized by Eclipse. Alex
123 lines
4.8 KiB
C++
123 lines
4.8 KiB
C++
/*============================================================================
|
|
CMake - Cross Platform Makefile Generator
|
|
Copyright 2004-2009 Kitware, Inc.
|
|
Copyright 2004 Alexander Neundorf (neundorf@kde.org)
|
|
Copyright 2007 Miguel A. Figueroa-Villanueva
|
|
|
|
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.
|
|
============================================================================*/
|
|
#ifndef cmExtraEclipseCDT4Generator_h
|
|
#define cmExtraEclipseCDT4Generator_h
|
|
|
|
#include "cmExternalMakefileProjectGenerator.h"
|
|
|
|
class cmMakefile;
|
|
class cmGeneratedFileStream;
|
|
|
|
/** \class cmExtraEclipseCDT4Generator
|
|
* \brief Write Eclipse project files for Makefile based projects
|
|
*/
|
|
class cmExtraEclipseCDT4Generator : public cmExternalMakefileProjectGenerator
|
|
{
|
|
public:
|
|
enum LinkType {VirtualFolder, LinkToFolder, LinkToFile };
|
|
|
|
cmExtraEclipseCDT4Generator();
|
|
|
|
static cmExternalMakefileProjectGenerator* New() {
|
|
return new cmExtraEclipseCDT4Generator;
|
|
}
|
|
|
|
virtual const char* GetName() const {
|
|
return cmExtraEclipseCDT4Generator::GetActualName();
|
|
}
|
|
|
|
static const char* GetActualName() { return "Eclipse CDT4"; }
|
|
|
|
virtual void GetDocumentation(cmDocumentationEntry& entry,
|
|
const char* fullName) const;
|
|
virtual void EnableLanguage(std::vector<std::string> const& languages,
|
|
cmMakefile *, bool optional);
|
|
|
|
virtual void Generate();
|
|
|
|
private:
|
|
// create .project file in the source tree
|
|
void CreateSourceProjectFile();
|
|
|
|
// 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);
|
|
|
|
static std::string EscapeForXML(const std::string& value);
|
|
|
|
// Helper functions
|
|
static void AppendStorageScanners(cmGeneratedFileStream& fout,
|
|
const cmMakefile& makefile);
|
|
static void AppendTarget (cmGeneratedFileStream& fout,
|
|
const std::string& target,
|
|
const std::string& make,
|
|
const std::string& makeArguments,
|
|
const std::string& path,
|
|
const char* prefix = "",
|
|
const char* makeTarget = NULL);
|
|
static void AppendScannerProfile (cmGeneratedFileStream& fout,
|
|
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 (cmGeneratedFileStream& fout,
|
|
const std::string& name,
|
|
const std::string& path,
|
|
LinkType linkType);
|
|
|
|
static void AppendIncludeDirectories(cmGeneratedFileStream& fout,
|
|
const std::vector<std::string>& includeDirs,
|
|
std::set<std::string>& emittedDirs);
|
|
|
|
static void AddEnvVar(cmGeneratedFileStream& fout, const char* envVar,
|
|
cmMakefile* mf);
|
|
|
|
void CreateLinksToSubprojects(cmGeneratedFileStream& fout,
|
|
const std::string& baseDir);
|
|
void CreateLinksForTargets(cmGeneratedFileStream& fout);
|
|
|
|
std::vector<std::string> SrcLinkedResources;
|
|
std::set<std::string> Natures;
|
|
std::string HomeDirectory;
|
|
std::string HomeOutputDirectory;
|
|
bool IsOutOfSourceBuild;
|
|
bool GenerateSourceProject;
|
|
bool GenerateLinkedResources;
|
|
bool SupportsVirtualFolders;
|
|
bool SupportsGmakeErrorParser;
|
|
bool SupportsMachO64Parser;
|
|
|
|
};
|
|
|
|
#endif
|