https://github.com/Kitware/CMake
Revision d57c1a5b3116d1df1bd5a7c2d9857e7b96d2a4f4 authored by Brad King on 02 October 2019, 11:53:33 UTC, committed by Kitware Robot on 02 October 2019, 11:53:43 UTC
ed98209ddc Revise include order using clang-format-6.0
185fe49f29 clang-format: Normalize headers presentation
42ef28b4f3 Remove unused uid_t/gid_t types on Windows

Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: Sebastian Holtermann <sebholt@web.de>
Merge-request: !3851
2 parent s a4f404d + ed98209
Raw File
Tip revision: d57c1a5b3116d1df1bd5a7c2d9857e7b96d2a4f4 authored by Brad King on 02 October 2019, 11:53:33 UTC
Merge topic 'clang-format-normalize-headers-presentation'
Tip revision: d57c1a5
cmBinUtilsWindowsPELinker.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */

#ifndef cmBinUtilsWindowsPELinker_h
#define cmBinUtilsWindowsPELinker_h

#include <memory>
#include <string>

#include "cmBinUtilsLinker.h"
#include "cmBinUtilsWindowsPEGetRuntimeDependenciesTool.h"
#include "cmStateTypes.h"

class cmRuntimeDependencyArchive;

class cmBinUtilsWindowsPELinker : public cmBinUtilsLinker
{
public:
  cmBinUtilsWindowsPELinker(cmRuntimeDependencyArchive* archive);

  bool Prepare() override;

  bool ScanDependencies(std::string const& file,
                        cmStateEnums::TargetType type) override;

private:
  std::unique_ptr<cmBinUtilsWindowsPEGetRuntimeDependenciesTool> Tool;

  bool ResolveDependency(std::string const& name, std::string const& origin,
                         std::string& path, bool& resolved);
};

#endif // cmBinUtilsWindowsPELinker_h
back to top