JackOSX framework, Issues with headers
-
Hi all,
I'm trying to use the jack audio framework on OSX.
I install the JackOSX pkg, add the following in .pro:QMAKE_CXXFLAGS += -F/library/frameworks QMAKE_CFLAGS += -F/library/frameworks LIBS += -framework JackmpThe problem is when I try to include the header:
#include <jackmp/jack.h>I have an error:
/library/frameworks/jackmp.framework/Headers/jack.h:29:10: fatal error: 'jack/systemdeps.h' file not found #include <jack/systemdeps.h> ^jack.h try to include <jack/systemdeps.h> but there's no jack folder in the framework Headers.
And all the includes are relative to the jack folder:
#include <jack/systemdeps.h> #include <jack/types.h> #include <jack/transport.h>I'm missing something obvious ?
(the name of the framework is jackmp not jack) -
When the includes are not where they should be I don't know what Qt (or qmake in this case) can do against. You should ask the creator of this library what is wrong.
-
Hi all,
I'm trying to use the jack audio framework on OSX.
I install the JackOSX pkg, add the following in .pro:QMAKE_CXXFLAGS += -F/library/frameworks QMAKE_CFLAGS += -F/library/frameworks LIBS += -framework JackmpThe problem is when I try to include the header:
#include <jackmp/jack.h>I have an error:
/library/frameworks/jackmp.framework/Headers/jack.h:29:10: fatal error: 'jack/systemdeps.h' file not found #include <jack/systemdeps.h> ^jack.h try to include <jack/systemdeps.h> but there's no jack folder in the framework Headers.
And all the includes are relative to the jack folder:
#include <jack/systemdeps.h> #include <jack/types.h> #include <jack/transport.h>I'm missing something obvious ?
(the name of the framework is jackmp not jack) -
Thanks for your responses.
Sure there's something wrong with the framework headers.
Hopefully there's a dylb installed as well and the headers are located in the right 'jack' folder in usr/local/include.So it works with the dylb, not the framework.
Problem (seems) solvedThanks you all for your attention.