mirror of
https://github.com/reactos/CMake.git
synced 2024-12-12 05:45:51 +00:00
fc8b90af2c
Rather than taking a number of out parameters for the various names, create a structure that is reused for both `GetLibraryNames` and `GetExecutableNames`. Replace uses according to the new interface.
48 lines
1.2 KiB
C++
48 lines
1.2 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 "cmGeneratorTarget.h"
|
|
#include "cmNinjaTargetGenerator.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class cmNinjaNormalTargetGenerator : public cmNinjaTargetGenerator
|
|
{
|
|
public:
|
|
cmNinjaNormalTargetGenerator(cmGeneratorTarget* target);
|
|
~cmNinjaNormalTargetGenerator() override;
|
|
|
|
void Generate() 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.
|
|
cmGeneratorTarget::Names TargetNames;
|
|
std::string TargetLinkLanguage;
|
|
std::string DeviceLinkObject;
|
|
};
|
|
|
|
#endif // ! cmNinjaNormalTargetGenerator_h
|