Skip to content

Commit

Permalink
simulate python: better guess at the library name in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
aftersomemath committed Sep 11, 2022
1 parent 3ae1a6f commit bd8b4c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def get_mujoco_lib_pattern():

def get_external_lib_patterns():
if platform.system() == 'Windows':
return ['mujoco.dll', 'liblibsimulate.dll']
return ['mujoco.dll', 'libsimulate.dll']
elif platform.system() == 'Darwin':
return ['libmujoco.*.dylib', 'liblibsimulate.*.dylib']
else:
Expand Down

0 comments on commit bd8b4c1

Please sign in to comment.