resolve cyclic dependency with zstd
[platform/upstream/cmake.git] / Source / cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool.h
1 /* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2    file Copyright.txt or https://cmake.org/licensing for details.  */
3
4 #pragma once
5
6 #include <string>
7 #include <vector>
8
9 #include "cmBinUtilsLinuxELFGetRuntimeDependenciesTool.h"
10
11 class cmRuntimeDependencyArchive;
12
13 class cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool
14   : public cmBinUtilsLinuxELFGetRuntimeDependenciesTool
15 {
16 public:
17   cmBinUtilsLinuxELFObjdumpGetRuntimeDependenciesTool(
18     cmRuntimeDependencyArchive* archive);
19
20   bool GetFileInfo(std::string const& file, std::vector<std::string>& needed,
21                    std::vector<std::string>& rpaths,
22                    std::vector<std::string>& runpaths) override;
23 };