Jump to content
  • 0

Sharing SDK Application on Windows


sdourmashkin

Question

Hello,

I would like to share a custom application I wrote for the AD2 in python using the Waveforms SDK to colleagues to run on Windows. Ideally I would like to share the application without others needing to install Waveforms - i.e., everything would already be packaged in the directory I share. 

I was able to do this on MacOS by including dwf.frameworks in the project directory, then loading the library by calling:

dwf = cdll.LoadLibrary("dwf.framework/dwf")

Is there something similar I can do on Windows? I tried including dwf.dll in the project directory and calling

dwf = cdll.LoadLibrary("dwf.dll")

but get the error:

FileNotFoundError: Could not find module 'dwf.dll' (or one of its dependencies). Try using the full path with constructor syntax.

Do I need to find and include all of the dependencies (and sub-dependencies) of dwf.dll? Is there a better solution?
 

Thank you,

Steven

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...