rncbc / jack_link

JACK transport timebase bridge to Ableton Link
GNU General Public License v2.0
47 stars 3 forks source link

Compile on windows #10

Open dwat3r opened 3 years ago

dwat3r commented 3 years ago

Hey, I'd like to use this on windows, but make presents me with this error:

$ 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?

rncbc commented 3 years ago

i guess this command line will do the trick: CCFLAGS=-I"C:\path\to\jack\include"LDFLAGS=-L"C:\path\to\jack\lib"make