We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fa3d2d commit 96a1cf7Copy full SHA for 96a1cf7
extending.py
@@ -13,6 +13,8 @@
13
libzedmd = ctypes.CDLL(str(pathlib.Path(__file__).parent.resolve()) + '/extern/libzedmd/build/Release/zedmd64.dll')
14
from build.Release.extending import ZeDMD_ext
15
elif platform == "darwin":
16
+ libsockpp = ctypes.CDLL(str(pathlib.Path(__file__).parent.resolve()) + '/extern/libzedmd/build/libsockpp.dylib')
17
+ libserialport = ctypes.CDLL(str(pathlib.Path(__file__).parent.resolve()) + '/extern/libzedmd/build/libserialport.dylib')
18
libzedmd = ctypes.CDLL(str(pathlib.Path(__file__).parent.resolve()) + '/extern/libzedmd/build/libzedmd.dylib')
19
from build.extending import ZeDMD_ext
20
else:
0 commit comments