CMake/Source/cmLocalVisualStudio7Generat...

131 lines
4.9 KiB
C
Raw Normal View History

Simplify CMake per-source license notices Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
2016-09-27 22:01:08 +03:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2002-09-04 23:23:56 +04:00
#ifndef cmLocalVisualStudio7Generator_h
#define cmLocalVisualStudio7Generator_h
#include "cmLocalVisualStudioGenerator.h"
#include "cmVisualStudioGeneratorOptions.h"
2002-09-04 23:23:56 +04:00
class cmSourceFile;
2003-06-03 18:30:23 +04:00
class cmCustomCommand;
class cmSourceGroup;
class cmLocalVisualStudio7GeneratorOptions;
class cmLocalVisualStudio7GeneratorFCInfo;
class cmLocalVisualStudio7GeneratorInternals;
2002-09-04 23:23:56 +04:00
/** \class cmLocalVisualStudio7Generator
* \brief Write Visual Studio .NET project files.
2002-09-04 23:23:56 +04:00
*
* cmLocalVisualStudio7Generator produces a Visual Studio .NET project
* file for each target in its directory.
2002-09-04 23:23:56 +04:00
*/
class cmLocalVisualStudio7Generator : public cmLocalVisualStudioGenerator
2002-09-04 23:23:56 +04:00
{
public:
///! Set cache only and recurse to false by default.
cmLocalVisualStudio7Generator(cmGlobalGenerator* gg, cmMakefile* mf);
2002-09-04 23:23:56 +04:00
virtual ~cmLocalVisualStudio7Generator();
virtual void AddHelperCommands();
2002-09-04 23:23:56 +04:00
/**
* Generate the makefile for this directory.
2002-09-04 23:23:56 +04:00
*/
virtual void Generate();
2002-09-04 23:23:56 +04:00
enum BuildType
{
STATIC_LIBRARY,
DLL,
EXECUTABLE,
WIN32_EXECUTABLE,
UTILITY
};
2002-09-04 23:23:56 +04:00
/**
* Specify the type of the build: static, dll, or executable.
*/
void SetBuildType(BuildType, const std::string& name);
2002-09-04 23:23:56 +04:00
virtual std::string GetTargetDirectory(
cmGeneratorTarget const* target) const;
cmSourceFile* CreateVCProjBuildRule();
void WriteStampFiles();
virtual std::string ComputeLongestObjectDirectory(
cmGeneratorTarget const*) const;
virtual void ReadAndStoreExternalGUID(const std::string& name,
const char* path);
virtual void AddCMakeListsRules();
protected:
void CreateSingleVCProj(const std::string& lname, cmGeneratorTarget* tgt);
2002-09-04 23:23:56 +04:00
private:
typedef cmVisualStudioGeneratorOptions Options;
typedef cmLocalVisualStudio7GeneratorFCInfo FCInfo;
std::string GetBuildTypeLinkerFlags(std::string rootLinkerFlags,
const std::string& configName);
void FixGlobalTargets();
void WriteProjectFiles();
2014-02-07 02:31:47 +04:00
void WriteVCProjHeader(std::ostream& fout, const std::string& libName,
2015-10-22 19:27:58 +03:00
cmGeneratorTarget* tgt,
std::vector<cmSourceGroup>& sgs);
2015-10-22 19:27:58 +03:00
void WriteVCProjFooter(std::ostream& fout, cmGeneratorTarget* target);
2014-02-07 02:31:47 +04:00
void WriteVCProjFile(std::ostream& fout, const std::string& libName,
2015-10-22 19:27:58 +03:00
cmGeneratorTarget* tgt);
2002-09-04 23:23:56 +04:00
void WriteConfigurations(std::ostream& fout,
std::vector<std::string> const& configs,
2015-10-22 19:27:58 +03:00
const std::string& libName, cmGeneratorTarget* tgt);
void WriteConfiguration(std::ostream& fout, const std::string& configName,
2015-10-22 19:27:58 +03:00
const std::string& libName, cmGeneratorTarget* tgt);
std::string EscapeForXML(const std::string& s);
2002-09-04 23:23:56 +04:00
std::string ConvertToXMLOutputPath(const char* path);
std::string ConvertToXMLOutputPathSingle(const char* path);
void OutputTargetRules(std::ostream& fout, const std::string& configName,
2015-10-22 19:27:58 +03:00
cmGeneratorTarget* target,
const std::string& libName);
void OutputBuildTool(std::ostream& fout, const std::string& configName,
2015-10-22 19:27:58 +03:00
cmGeneratorTarget* t, const Options& targetOptions);
void OutputDeploymentDebuggerTool(std::ostream& fout,
std::string const& config,
cmGeneratorTarget* target);
2002-09-04 23:23:56 +04:00
void OutputLibraryDirectories(std::ostream& fout,
std::vector<std::string> const& dirs);
void WriteProjectSCC(std::ostream& fout, cmGeneratorTarget* target);
2014-02-07 02:31:47 +04:00
void WriteProjectStart(std::ostream& fout, const std::string& libName,
2015-10-22 19:27:58 +03:00
cmGeneratorTarget* tgt,
std::vector<cmSourceGroup>& sgs);
2014-02-07 02:31:47 +04:00
void WriteProjectStartFortran(std::ostream& fout, const std::string& libName,
2015-10-22 19:27:58 +03:00
cmGeneratorTarget* tgt);
void WriteVCProjBeginGroup(std::ostream& fout, const char* group,
const char* filter);
2002-09-04 23:23:56 +04:00
void WriteVCProjEndGroup(std::ostream& fout);
2002-09-04 23:23:56 +04:00
void WriteCustomRule(std::ostream& fout,
std::vector<std::string> const& configs,
const char* source, const cmCustomCommand& command,
FCInfo& fcinfo);
void WriteTargetVersionAttribute(std::ostream& fout, cmGeneratorTarget* gt);
2002-09-04 23:23:56 +04:00
bool 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
friend class cmLocalVisualStudio7GeneratorFCInfo;
friend class cmLocalVisualStudio7GeneratorInternals;
class EventWriter;
friend class EventWriter;
2006-03-15 19:02:08 +03:00
std::string ModuleDefinitionFile;
bool FortranProject;
bool WindowsCEProject;
cmLocalVisualStudio7GeneratorInternals* Internal;
2002-09-04 23:23:56 +04:00
};
#endif