Skip to content

Commit

Permalink
Try loading dll with relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Gouache committed Jun 21, 2024
1 parent fbbb43a commit 6cf7cad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/plugin_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ void *init_plugin()
std::string lib_path = MyPaths::mergePaths(lib_dir, LIBRARY_NAME);
#else
std::string lib_dir = bin_dir;
std::string lib_path = MyPaths::mergePaths(bin_dir, LIBRARY_NAME);
//std::string lib_path = MyPaths::mergePaths(bin_dir, LIBRARY_NAME);
std::string lib_path = LIBRARY_NAME;
#endif

// DEBUG
Expand Down

0 comments on commit 6cf7cad

Please sign in to comment.