gnieboer / GNURadio_Windows_Build_Scripts

A series of Powershell scripts to automatically download, build from source, and install GNURadio and -all- it's dependencies as 64-bit native binaries then package as an msi using Visual Studio 2015
GNU General Public License v3.0
89 stars 32 forks source link

The build for Portaudio.dll does not seem to include ASIO support #58

Open DDubbleDD opened 3 years ago

DDubbleDD commented 3 years ago

I really need the ASIO support for Portaudio. The ASIO partially works in the 3.8 version, enough for my purposes. I've spent a bunch of time investigating this and seem to have tracked it down to this. When building the Portaudio.dll the portaudio.vcxproj needs to have PA_USE_ASIO=1 in the PreprocessorDefinitions.

Currently ASIO is disabled: WIN32;NDEBUG;_USRDLL;PA_ENABLE_DEBUG_OUTPUT;_CRT_SECURE_NO_DEPRECATE;PAWIN_USE_WDMKS_DEVICE_INFO;PA_USE_ASIO=0;PA_USE_DS=0;PA_USE_WMME=1;PA_USE_WASAPI=1;PA_USE_WDMKS=1;%(PreprocessorDefinitions)

Can you please, please add this ASIO support on the next build?

Thanks! -David