We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e77757 commit e76339fCopy full SHA for e76339f
cadet/cadet.py
@@ -87,6 +87,9 @@ def resolve_cadet_paths(
87
if platform.system() == 'Windows':
88
dll_path = cadet_root / 'bin' / 'cadet.dll'
89
dll_debug_path = cadet_root / 'bin' / 'cadet_d.dll'
90
+ elif platform.system() == 'Darwin':
91
+ dll_path = cadet_root / 'lib' / 'libcadet.dylib'
92
+ dll_debug_path = cadet_root / 'lib' / 'libcadet_d.dylib'
93
else:
94
dll_path = cadet_root / 'lib' / 'libcadet.so'
95
dll_debug_path = cadet_root / 'lib' / 'libcadet_d.so'
0 commit comments