mirror of
https://github.com/reactos/CMake.git
synced 2024-11-30 23:10:26 +00:00
51 lines
1.7 KiB
C++
51 lines
1.7 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 <string>
|
|
#include <vector>
|
|
|
|
#include "cmGeneratorTarget.h"
|
|
#include "cmNinjaTargetGenerator.h"
|
|
|
|
class cmNinjaNormalTargetGenerator : public cmNinjaTargetGenerator
|
|
{
|
|
public:
|
|
cmNinjaNormalTargetGenerator(cmGeneratorTarget* target);
|
|
~cmNinjaNormalTargetGenerator() override;
|
|
|
|
void Generate(const std::string& config) override;
|
|
|
|
private:
|
|
std::string LanguageLinkerRule(const std::string& config) const;
|
|
std::string LanguageLinkerDeviceRule(const std::string& config) const;
|
|
|
|
const char* GetVisibleTypeName() const;
|
|
void WriteLanguagesRules(const std::string& config);
|
|
|
|
void WriteLinkRule(bool useResponseFile, const std::string& config);
|
|
void WriteDeviceLinkRule(bool useResponseFile, const std::string& config);
|
|
|
|
void WriteLinkStatement(const std::string& config,
|
|
const std::string& fileConfig, bool firstForConfig);
|
|
void WriteDeviceLinkStatement(const std::string& config,
|
|
const std::string& fileConfig,
|
|
bool firstForConfig);
|
|
|
|
void WriteObjectLibStatement(const std::string& config);
|
|
|
|
std::vector<std::string> ComputeLinkCmd(const std::string& config);
|
|
std::vector<std::string> ComputeDeviceLinkCmd();
|
|
|
|
private:
|
|
// Target name info.
|
|
cmGeneratorTarget::Names TargetNames(const std::string& config) const;
|
|
std::string TargetLinkLanguage(const std::string& config) const;
|
|
std::string DeviceLinkObject;
|
|
};
|
|
|
|
#endif // ! cmNinjaNormalTargetGenerator_h
|