https://github.com/Kitware/CMake
Raw File
Tip revision: 1dc252ecf4d0946196133734540ebe8e90f312d3 authored by Brad King on 03 October 2016, 13:53:58 UTC
Merge branch 'fix-doc-3.7-relnotes' into release
Tip revision: 1dc252e
cmNinjaNormalTargetGenerator.h
/* 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
back to top