Browse Source

Fix build

tags/1.9.4
falkTX 10 years ago
parent
commit
14e4adac3b
2 changed files with 18 additions and 0 deletions
  1. +17
    -0
      source/Makefile.mk
  2. +1
    -0
      source/backend/engine/CarlaEngineOscSend.cpp

+ 17
- 0
source/Makefile.mk View File

@@ -234,6 +234,23 @@ HAVE_FLUIDSYNTH = $(shell pkg-config --exists fluidsynth && echo true)
HAVE_LINUXSAMPLER = $(shell pkg-config --exists linuxsampler && echo true)
endif

# --------------------------------------------------------------
# Set Qt tools
# TODO

ifeq ($(HAVE_QTGUI4),true)
ifeq (,$(wildcard $(MOC_QT4)))
HAVE_QTGUI4=false
endif
endif

ifeq ($(HAVE_QTGUI5),true)
QT5_LIBDIR = $(shell pkg-config --variable=libdir Qt5Core)
ifeq (,$(wildcard $(MOC_QT5)))
HAVE_QTGUI5=false
endif
endif

# --------------------------------------------------------------
# Check for optional libs (required by internal plugins)



+ 1
- 0
source/backend/engine/CarlaEngineOscSend.cpp View File

@@ -15,6 +15,7 @@
* For a full copy of the GNU General Public License see the doc/GPL.txt file.
*/

#include "CarlaBackendUtils.hpp"
#include "CarlaEngineInternal.hpp"
#include "CarlaMIDI.h"



Loading…
Cancel
Save