steinbergmedia / vst3sdk

VST 3 Plug-In SDK
Other
1.61k stars 163 forks source link

moduleinfotool.exe exits with code 1, no other info #106

Open kwyntes opened 1 year ago

kwyntes commented 1 year ago

In order to perform a Fast Fourier Transform on the input signal I included the FFTW3 library in my project. I have followed all of the steps to use this library (ran lib /def:libfftw3-3.def to generate the .lib files, and added the library to the include path and the lib files to the linker dependencies).

If I do not use any of the functions provided by this library, my code builds just fine. However, as soon as I include a call to any of those, the post-build script which at some point launches the moduleinfotool.exe to generate the moduleinfo.json file fails to do so and exits with code 1, leaving me with a rather undescriptive error message in Visual Studio.

I have no idea why this is happening or what could possibly be causing this, so any help would be much appreciated!