robertsonics / WTConfig

Tsunami / WAV Trigger Unified Configurator Utility
4 stars 4 forks source link

juce_core.h missing #1

Open linwp opened 5 years ago

linwp commented 5 years ago

Hi

I tried to compile this on Arch Linux and got an error that juce_core.h is missing:

`Compiling AudioSettings.cpp In file included from ../../Source/OutputComponent.h:23, from ../../Source/AudioSettings.cpp:22: ../../Source/../JuceLibraryCode/JuceHeader.h:17:10: schwerwiegender Fehler: juce_core/juce_core.h: Datei oder Verzeichnis nicht gefunden

include <juce_core/juce_core.h>

      ^~~~~~~~~~~~~~~~~~~~~~~

Kompilierung beendet. make: *** [Makefile:103: build/intermediate/Debug/AudioSettings_52f030fa.o] Fehler 1 `

robertsonics commented 5 years ago

Two things: You need to install JUCE and make sure that the project's JUCE file is correctly pointing to your installation. Second, be aware that the project currently does not implement the correct serial comm API for Linux - the routines are just stubs - so you'll need to do that yourself.

baloe commented 1 year ago

So is it all those relative paths in WTConfig.jucer that I need to adapt or what? Come on I don't want to have to dig into how JUCE works only to be able to create that configuration text file.

baloe commented 1 year ago

So the Makefile contains $(HOME)/JUCE/ which must be replaced with the proper path, /usr/share/juce/ in my case.