cmLDConfigLDConfigTool.h 522 B

12345678910111213141516171819202122
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmLDConfigLDConfigTool_h
  4. #define cmLDConfigLDConfigTool_h
  5. #include "cmLDConfigTool.h"
  6. #include <string>
  7. #include <vector>
  8. class cmRuntimeDependencyArchive;
  9. class cmLDConfigLDConfigTool : public cmLDConfigTool
  10. {
  11. public:
  12. cmLDConfigLDConfigTool(cmRuntimeDependencyArchive* archive);
  13. bool GetLDConfigPaths(std::vector<std::string>& paths) override;
  14. };
  15. #endif