mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 20:19:53 +00:00
448661fbe5
In targets with no non-header files the linker language cannot be determined. Since the target project file cannot be generated at all in this case, give up as soon as it is detected. Otherwise the generation code may try to run with uninitialized information.
102 lines
3.7 KiB
C++
102 lines
3.7 KiB
C++
/*============================================================================
|
|
CMake - Cross Platform Makefile Generator
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
|
|
|
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 cmVisualStudioTargetGenerator_h
|
|
#define cmVisualStudioTargetGenerator_h
|
|
#include "cmStandardIncludes.h"
|
|
|
|
class cmTarget;
|
|
class cmMakefile;
|
|
class cmGeneratedFileStream;
|
|
class cmGlobalVisualStudio10Generator;
|
|
class cmSourceFile;
|
|
class cmCustomCommand;
|
|
class cmLocalVisualStudio7Generator;
|
|
class cmComputeLinkInformation;
|
|
class cmVisualStudioGeneratorOptions;
|
|
#include "cmSourceGroup.h"
|
|
|
|
class cmVisualStudio10TargetGenerator
|
|
{
|
|
public:
|
|
cmVisualStudio10TargetGenerator(cmTarget* target,
|
|
cmGlobalVisualStudio10Generator* gg);
|
|
~cmVisualStudio10TargetGenerator();
|
|
void Generate();
|
|
// used by cmVisualStudioGeneratorOptions
|
|
void WritePlatformConfigTag(
|
|
const char* tag,
|
|
const char* config,
|
|
int indentLevel,
|
|
const char* attribute = 0,
|
|
const char* end = 0,
|
|
std::ostream* strm = 0
|
|
);
|
|
|
|
private:
|
|
void ConvertToWindowsSlash(std::string& s);
|
|
void WriteString(const char* line, int indentLevel);
|
|
void WriteProjectConfigurations();
|
|
void WriteProjectConfigurationValues();
|
|
void WriteCLSources();
|
|
void WriteObjSources();
|
|
void WritePathAndIncrementalLinkOptions();
|
|
void WriteItemDefinitionGroups();
|
|
bool ComputeClOptions();
|
|
bool ComputeClOptions(std::string const& configName);
|
|
void WriteClOptions(std::string const& config,
|
|
std::vector<std::string> const & includes);
|
|
void WriteRCOptions(std::string const& config,
|
|
std::vector<std::string> const & includes);
|
|
void WriteLinkOptions(std::string const& config);
|
|
void WriteMidlOptions(std::string const& config,
|
|
std::vector<std::string> const & includes);
|
|
void OutputIncludes(std::vector<std::string> const & includes);
|
|
void OutputLinkIncremental(std::string const& configName);
|
|
void WriteCustomRule(cmSourceFile* source,
|
|
cmCustomCommand const & command);
|
|
void WriteCustomCommands();
|
|
void WriteCustomCommand(cmSourceFile* sf);
|
|
void WriteGroups();
|
|
void WriteProjectReferences();
|
|
bool OutputSourceSpecificFlags(cmSourceFile* source);
|
|
void AddLibraries(cmComputeLinkInformation& cli, std::string& libstring);
|
|
void WriteLibOptions(std::string const& config);
|
|
void WriteEvents(std::string const& configName);
|
|
void WriteEvent(const char* name, std::vector<cmCustomCommand> & commands,
|
|
std::string const& configName);
|
|
void ComputeObjectNames();
|
|
void WriteGroupSources(const char* name,
|
|
std::vector<cmSourceFile*> const& sources,
|
|
std::vector<cmSourceGroup>& );
|
|
void AddMissingSourceGroups(std::set<cmSourceGroup*>& groupsUsed,
|
|
const std::vector<cmSourceGroup>& allGroups);
|
|
|
|
|
|
private:
|
|
typedef cmVisualStudioGeneratorOptions Options;
|
|
typedef std::map<cmStdString, Options*> OptionsMap;
|
|
OptionsMap ClOptions;
|
|
std::string ModuleDefinitionFile;
|
|
std::string PathToVcxproj;
|
|
cmTarget* Target;
|
|
cmMakefile* Makefile;
|
|
std::string Platform;
|
|
std::string GUID;
|
|
std::string Name;
|
|
cmGlobalVisualStudio10Generator* GlobalGenerator;
|
|
cmGeneratedFileStream* BuildFileStream;
|
|
cmLocalVisualStudio7Generator* LocalGenerator;
|
|
std::set<cmSourceFile*> SourcesVisited;
|
|
};
|
|
|
|
#endif
|