mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 20:19:53 +00:00
ca2233e31f
Also remove `#include "cmConfigure.h"` from most source files.
53 lines
1.3 KiB
C++
53 lines
1.3 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" // IWYU pragma: keep
|
|
|
|
#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;
|
|
std::string LanguageLinkerDeviceRule() const;
|
|
|
|
const char* GetVisibleTypeName() const;
|
|
void WriteLanguagesRules();
|
|
|
|
void WriteLinkRule(bool useResponseFile);
|
|
void WriteDeviceLinkRule(bool useResponseFile);
|
|
|
|
void WriteLinkStatement();
|
|
void WriteDeviceLinkStatement();
|
|
|
|
void WriteObjectLibStatement();
|
|
|
|
std::vector<std::string> ComputeLinkCmd();
|
|
std::vector<std::string> ComputeDeviceLinkCmd();
|
|
|
|
private:
|
|
// Target name info.
|
|
std::string TargetNameOut;
|
|
std::string TargetNameSO;
|
|
std::string TargetNameReal;
|
|
std::string TargetNameImport;
|
|
std::string TargetNamePDB;
|
|
std::string TargetLinkLanguage;
|
|
std::string DeviceLinkObject;
|
|
};
|
|
|
|
#endif // ! cmNinjaNormalTargetGenerator_h
|