You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.7 KiB
51 lines
1.7 KiB
/* 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
|