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
cmExportLibraryDependenciesCommand.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cmExportLibraryDependenciesCommand_h
#define cmExportLibraryDependenciesCommand_h

#include "cmConfigure.h"

#include <string>
#include <vector>

#include "cmCommand.h"

class cmExecutionStatus;

class cmExportLibraryDependenciesCommand : public cmCommand
{
public:
  cmCommand* Clone() CM_OVERRIDE
  {
    return new cmExportLibraryDependenciesCommand;
  }
  bool InitialPass(std::vector<std::string> const& args,
                   cmExecutionStatus& status) CM_OVERRIDE;

  void FinalPass() CM_OVERRIDE;
  bool HasFinalPass() const CM_OVERRIDE { return true; }

private:
  std::string Filename;
  bool Append;
  void ConstFinalPass() const;
};

#endif
back to top