Miserlou / RJModules

Various modules for VCV Rack
https://github.com/Miserlou/RJModules
MIT License
98 stars 18 forks source link

Compile failure on Windows platform #61

Closed cschol closed 4 years ago

cschol commented 4 years ago
src/Soundpipe.cpp:2:10: fatal error: sndfile.h: No such file or directory
 #include <sndfile.h>
          ^~~~~~~~~~~
compilation terminated.
/home/cschol/src/Rack-SDK/Rack-SDK/compile.mk:68: recipe for target 'build/src/Soundpipe.cpp.o' failed
make: *** [build/src/Soundpipe.cpp.o] Error 1
Miserlou commented 4 years ago

Thanks, sorted. Didn't think that files that weren't included in the plugin.json were compiled.

cschol commented 4 years ago
# Add .cpp and .c files to the build
SOURCES += $(wildcard src/*.cpp)

Anything in SOURCES will be compiled.