https://github.com/Kitware/CMake
Revision cfa9a2bd8893349516a2f5ffa51e67e6e0973d1c authored by Brad King on 14 July 2017, 14:58:36 UTC, committed by Brad King on 14 July 2017, 15:02:17 UTC
Add a release note corresponding to the environmental regression fixed
by commit v3.9.0-rc6~15^2~1 (VS: Fix GenerateDebugInformation values for
v140 and v141 toolsets, 2017-06-27).
1 parent 25b72e9
Raw File
Tip revision: cfa9a2bd8893349516a2f5ffa51e67e6e0973d1c authored by Brad King on 14 July 2017, 14:58:36 UTC
Help: Add a 3.9 release note about the VS GenerateDebugInformation update
Tip revision: cfa9a2b
cmCPackPropertiesGenerator.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cmCPackPropertiesGenerator_h
#define cmCPackPropertiesGenerator_h

#include "cmConfigure.h"

#include "cmScriptGenerator.h"

#include <iosfwd>
#include <string>
#include <vector>

class cmInstalledFile;
class cmLocalGenerator;

/** \class cmCPackPropertiesGenerator
 * \brief Support class for generating CPackProperties.cmake.
 *
 */
class cmCPackPropertiesGenerator : public cmScriptGenerator
{
  CM_DISABLE_COPY(cmCPackPropertiesGenerator)

public:
  cmCPackPropertiesGenerator(cmLocalGenerator* lg,
                             cmInstalledFile const& installedFile,
                             std::vector<std::string> const& configurations);

protected:
  void GenerateScriptForConfig(std::ostream& os, const std::string& config,
                               Indent indent) CM_OVERRIDE;

  cmLocalGenerator* LG;
  cmInstalledFile const& InstalledFile;
};

#endif
back to top