/src/CMake/Source/cmLDConfigTool.h
Line | Count | Source |
1 | | /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying |
2 | | file LICENSE.rst or https://cmake.org/licensing for details. */ |
3 | | |
4 | | #pragma once |
5 | | |
6 | | #include <string> |
7 | | #include <vector> |
8 | | |
9 | | class cmRuntimeDependencyArchive; |
10 | | |
11 | | class cmLDConfigTool |
12 | | { |
13 | | public: |
14 | | cmLDConfigTool(cmRuntimeDependencyArchive* archive); |
15 | 0 | virtual ~cmLDConfigTool() = default; |
16 | | |
17 | | virtual bool GetLDConfigPaths(std::vector<std::string>& paths) = 0; |
18 | | |
19 | | protected: |
20 | | cmRuntimeDependencyArchive* Archive; |
21 | | }; |