Open dwat3r opened 3 years ago
Hey, I'd like to use this on windows, but make presents me with this error:
make
$ make g++ -D_NAME="jack_link" -D_VERSION="0.1.4" -D_LINK_VERSION="3.0.3" -g -O2 -std=c++11 -Wno-multichar -DLINK_PLATFORM_WINDOWS=1 -Ilink/include -DASIO_STANDALONE=1 -Ilink/modules/asio-standalone/asio/include -o jack_link jack_link.cpp -ljack -lpthread In file included from jack_link.cpp:22:0: jack_link.hpp:50:23: fatal error: jack/jack.h: No such file or directory #include <jack/jack.h> ^ compilation terminated. make: *** [jack_link] Error 1
How can I point it to the jack headers?
i guess this command line will do the trick: CCFLAGS=-I"C:\path\to\jack\include"LDFLAGS=-L"C:\path\to\jack\lib"make
CCFLAGS=-I
LDFLAGS=-L
Hey, I'd like to use this on windows, but
make
presents me with this error:How can I point it to the jack headers?