43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmNinjaNormalTargetGenerator_h
|
|
#define cmNinjaNormalTargetGenerator_h
|
|
|
|
#include <cmConfigure.h>
|
|
|
|
#include "cmNinjaTargetGenerator.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class cmGeneratorTarget;
|
|
|
|
class cmNinjaNormalTargetGenerator : public cmNinjaTargetGenerator
|
|
{
|
|
public:
|
|
cmNinjaNormalTargetGenerator(cmGeneratorTarget* target);
|
|
~cmNinjaNormalTargetGenerator() CM_OVERRIDE;
|
|
|
|
void Generate() CM_OVERRIDE;
|
|
|
|
private:
|
|
std::string LanguageLinkerRule() const;
|
|
const char* GetVisibleTypeName() const;
|
|
void WriteLanguagesRules();
|
|
void WriteLinkRule(bool useResponseFile);
|
|
void WriteLinkStatement();
|
|
void WriteObjectLibStatement();
|
|
std::vector<std::string> ComputeLinkCmd();
|
|
|
|
private:
|
|
// Target name info.
|
|
std::string TargetNameOut;
|
|
std::string TargetNameSO;
|
|
std::string TargetNameReal;
|
|
std::string TargetNameImport;
|
|
std::string TargetNamePDB;
|
|
std::string TargetLinkLanguage;
|
|
};
|
|
|
|
#endif // ! cmNinjaNormalTargetGenerator_h
|