fix(SharedLibrary): Missing DLLs not reported #5069

This commit is contained in:
Alex Fabijanic
2025-12-05 13:50:53 -06:00
parent 2bdeaff849
commit 42ffe44e5c
21 changed files with 920 additions and 42 deletions

View File

@@ -20,6 +20,8 @@
#include "Poco/Foundation.h"
#include "Poco/Mutex.h"
#include <vector>
#include <string>
namespace Poco {
@@ -43,6 +45,7 @@ protected:
const std::string& getPathImpl() const;
static std::string suffixImpl();
static bool setSearchPathImpl(const std::string& path);
static std::vector<std::string> findMissingDependenciesImpl(const std::string& path);
private:
std::string _path;