We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fe3173 commit c7b8dccCopy full SHA for c7b8dcc
test/Common.cpp
@@ -78,7 +78,10 @@ std::optional<fs::path> findInDefaultPath(std::string const& lib_name)
78
fs::current_path() / ".." / "deps" / "lib",
79
fs::current_path() / ".." / ".." / "deps",
80
fs::current_path() / ".." / ".." / "deps" / "lib",
81
- fs::current_path()
+ fs::current_path(),
82
+#ifdef __APPLE__
83
+ fs::current_path().root_path() / fs::path("usr") / "local" / "lib",
84
+#endif
85
};
86
for (auto const& basePath: searchPath)
87
{
0 commit comments