Skip to content

Commit

Permalink
Merge pull request #50 from analogdevicesinc/pybindings-win-path-fix
Browse files Browse the repository at this point in the history
Fix to find C library through Python bindings
  • Loading branch information
SrikanthPagadarai authored Dec 2, 2024
2 parents 0099fea + 5c8edc4 commit c2bbbf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/genalyzer/pygenalyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
if "linux" == _sys.platform:
_libpath = _find_library("genalyzer")
elif "win32" == _sys.platform:
_libpath = _find_library(_os.path.join(_module_dir, "genalyzer"))
_libpath = _find_library("libgenalyzer.dll")
else:
raise Exception("Platform '{}' is not supported.".format(_sys.platform))

Expand Down

0 comments on commit c2bbbf9

Please sign in to comment.