1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-02 03:20:06 +00:00

Initial version of a CoreGraphics-based rendering context for the mac. Also an intial version of JACK support for linux.

This commit is contained in:
Julian Storer 2009-10-31 11:15:12 +00:00
parent 2d0600d594
commit ebeaa40689
17 changed files with 1349 additions and 15 deletions

View file

@ -111,6 +111,19 @@
#include <alsa/asoundlib.h>
#endif
#if JUCE_JACK
/* Got an include error here? If so, you've either not got jack-audio-connection-kit
installed, or you've not got your paths set up correctly to find its header files.
The package you need to install to get JACK support is "libjack-dev".
If you don't have the jack-audio-connection-kit library and don't want to build
Juce with low latency audio support, just disable the JUCE_JACK flag in juce_Config.h
*/
#include <jack/jack.h>
//#include <jack/transport.h>
#endif
#undef SIZEOF
#endif // __JUCE_LINUX_NATIVEINCLUDES_JUCEHEADER__