@@ -1,113 +0,0 @@ | |||||
# QtCreator project file | |||||
TARGET = CarlaStandalone | |||||
TEMPLATE = app | |||||
VERSION = 1.9 | |||||
# ------------------------------------------------------- | |||||
CONFIG = debug | |||||
CONFIG += link_pkgconfig warn_on | |||||
# ------------------------------------------------------- | |||||
DEFINES = DEBUG REAL_BUILD | |||||
DEFINES += QTCREATOR_TEST | |||||
DEFINES += HAVE_FLUIDSYNTH | |||||
DEFINES += HAVE_LINUXSAMPLER | |||||
DEFINES += HAVE_X11 | |||||
DEFINES += VESTIGE_HEADER | |||||
DEFINES += WANT_ZYNADDSUBFX | |||||
DEFINES += WANT_ZYNADDSUBFX_UI | |||||
# ------------------------------------------------------- | |||||
PKGCONFIG = liblo | |||||
PKGCONFIG += alsa | |||||
PKGCONFIG += fluidsynth | |||||
PKGCONFIG += linuxsampler | |||||
PKGCONFIG += x11 | |||||
PKGCONFIG += fftw3 | |||||
PKGCONFIG += mxml | |||||
PKGCONFIG += zlib | |||||
PKGCONFIG += ntk_images | |||||
PKGCONFIG += ntk | |||||
# ------------------------------------------------------- | |||||
LIBS = ../modules/jackbridge.a | |||||
LIBS += ../modules/juce_audio_basics.a | |||||
LIBS += ../modules/juce_audio_formats.a | |||||
LIBS += ../modules/juce_core.a | |||||
LIBS += ../modules/lilv.a | |||||
LIBS += ../modules/native-plugins.a | |||||
LIBS += ../modules/rtmempool.a | |||||
LIBS += ../modules/rtaudio.a | |||||
LIBS += ../modules/rtmidi.a | |||||
LIBS += -ldl -lm -lpthread -lrt -lmagic | |||||
# ------------------------------------------------------- | |||||
SOURCES = \ | |||||
CarlaStandalone.cpp | |||||
SOURCES += \ | |||||
engine/CarlaEngine.cpp \ | |||||
engine/CarlaEngineClient.cpp \ | |||||
engine/CarlaEngineData.cpp \ | |||||
engine/CarlaEngineGraph.cpp \ | |||||
engine/CarlaEngineInternal.cpp \ | |||||
engine/CarlaEngineOsc.cpp \ | |||||
engine/CarlaEngineOscSend.cpp \ | |||||
engine/CarlaEnginePorts.cpp \ | |||||
engine/CarlaEngineThread.cpp \ | |||||
engine/CarlaEngineJack.cpp \ | |||||
engine/CarlaEngineNative.cpp \ | |||||
engine/CarlaEngineRtAudio.cpp | |||||
SOURCES += \ | |||||
plugin/CarlaPlugin.cpp \ | |||||
plugin/CarlaPluginInternal.cpp \ | |||||
plugin/CarlaPluginThread.cpp \ | |||||
plugin/BridgePlugin.cpp \ | |||||
plugin/NativePlugin.cpp \ | |||||
plugin/LadspaPlugin.cpp \ | |||||
plugin/DssiPlugin.cpp \ | |||||
plugin/Lv2Plugin.cpp \ | |||||
plugin/VstPlugin.cpp \ | |||||
plugin/Vst3Plugin.cpp \ | |||||
plugin/AuPlugin.cpp \ | |||||
plugin/FluidSynthPlugin.cpp \ | |||||
plugin/LinuxSamplerPlugin.cpp | |||||
SOURCES += \ | |||||
../tests/QtCreator.cpp | |||||
HEADERS = \ | |||||
CarlaBackend.h \ | |||||
CarlaHost.h \ | |||||
CarlaEngine.hpp \ | |||||
CarlaPlugin.hpp | |||||
HEADERS += \ | |||||
engine/*.hpp \ | |||||
plugin/*.hpp | |||||
HEADERS += \ | |||||
../includes/*.h \ | |||||
../modules/*.h \ | |||||
../modules/*.hpp \ | |||||
../utils/*.cpp \ | |||||
../utils/*.hpp | |||||
INCLUDEPATH = . \ | |||||
../includes \ | |||||
../modules \ | |||||
../utils | |||||
# ------------------------------------------------------- | |||||
QMAKE_CXXFLAGS *= -std=c++11 | |||||
# ------------------------------------------------------- |
@@ -1,101 +0,0 @@ | |||||
# QtCreator project file | |||||
TARGET = CarlaEngine | |||||
TEMPLATE = lib | |||||
VERSION = 1.0 | |||||
# ------------------------------------------------------- | |||||
QT = core xml | |||||
CONFIG = debug | |||||
CONFIG += link_pkgconfig qt shared warn_on | |||||
DEFINES = DEBUG | |||||
DEFINES += HAVE_CPP11_SUPPORT | |||||
DEFINES += QTCREATOR_TEST MOC_PARSING | |||||
# Shared | |||||
DEFINES += WANT_NATIVE | |||||
DEFINES += WANT_LADSPA | |||||
DEFINES += WANT_DSSI | |||||
DEFINES += WANT_LV2 | |||||
DEFINES += WANT_VST | |||||
DEFINES += WANT_PLUGIN | |||||
DEFINES += WANT_FLUIDSYNTH | |||||
DEFINES += WANT_LINUXSAMPLER | |||||
DEFINES += WANT_OPENGL | |||||
DEFINES += WANT_AUDIOFILE | |||||
DEFINES += WANT_MIDIFILE | |||||
DEFINES += WANT_ZYNADDSUBFX | |||||
DEFINES += WANT_ZYNADDSUBFX_UI | |||||
# Engine | |||||
PKGCONFIG += liblo | |||||
# RtAudio | |||||
DEFINES += HAVE_GETTIMEOFDAY | |||||
DEFINES += __RTAUDIO_DEBUG__ __RTMIDI_DEBUG__ | |||||
# ALSA | |||||
DEFINES += __LINUX_ALSA__ __LINUX_ALSASEQ__ | |||||
PKGCONFIG += alsa | |||||
# JACK | |||||
DEFINES += __UNIX_JACK__ | |||||
# PulseAudio | |||||
DEFINES += __LINUX_PULSE__ | |||||
PKGCONFIG += libpulse-simple | |||||
# ------------------------------------------------------- | |||||
SOURCES = \ | |||||
CarlaEngine.cpp \ | |||||
CarlaEngineOsc.cpp \ | |||||
CarlaEngineThread.cpp \ | |||||
CarlaEngineBridge.cpp \ | |||||
CarlaEngineJack.cpp \ | |||||
CarlaEngineJuce.cpp \ | |||||
CarlaEngineNative.cpp \ | |||||
CarlaEngineRtAudio.cpp | |||||
HEADERS = \ | |||||
CarlaEngineInternal.hpp \ | |||||
CarlaEngineOsc.hpp \ | |||||
CarlaEngineThread.hpp | |||||
HEADERS += \ | |||||
../CarlaBackend.hpp \ | |||||
../CarlaEngine.hpp \ | |||||
../CarlaNative.h \ | |||||
../CarlaPlugin.hpp | |||||
HEADERS += \ | |||||
../../includes/CarlaDefines.hpp \ | |||||
../../includes/CarlaMIDI.h | |||||
HEADERS += \ | |||||
../../utils/CarlaMutex.hpp \ | |||||
../../utils/CarlaRingBuffer.hpp \ | |||||
../../utils/CarlaString.hpp \ | |||||
../../utils/CarlaThread.hpp \ | |||||
../../utils/CarlaUtils.hpp \ | |||||
../../utils/CarlaBackendUtils.hpp \ | |||||
../../utils/CarlaBridgeUtils.hpp \ | |||||
../../utils/CarlaJuceUtils.hpp \ | |||||
../../utils/CarlaOscUtils.hpp \ | |||||
../../utils/CarlaStateUtils.hpp \ | |||||
../../utils/RtList.hpp | |||||
INCLUDEPATH = . .. \ | |||||
../../includes \ | |||||
../../modules \ | |||||
../../utils | |||||
# RtAudio/RtMidi | |||||
INCLUDEPATH += rtaudio-4.0.12 rtmidi-2.0.1 | |||||
SOURCES += rtaudio-4.0.12/RtAudio.cpp | |||||
SOURCES += rtmidi-2.0.1/RtMidi.cpp | |||||
QMAKE_CXXFLAGS += -std=c++0x |
@@ -1,95 +0,0 @@ | |||||
# QtCreator project file | |||||
TARGET = CarlaPlugin | |||||
TEMPLATE = lib | |||||
VERSION = 1.0 | |||||
# ------------------------------------------------------- | |||||
QT = core gui xml | |||||
CONFIG = debug | |||||
CONFIG += link_pkgconfig qt shared warn_on | |||||
DEFINES = DEBUG | |||||
DEFINES += HAVE_CPP11_SUPPORT | |||||
DEFINES += QTCREATOR_TEST MOC_PARSING | |||||
# Shared | |||||
DEFINES += WANT_NATIVE | |||||
DEFINES += WANT_LADSPA | |||||
DEFINES += WANT_DSSI | |||||
DEFINES += WANT_LV2 | |||||
DEFINES += WANT_VST | |||||
DEFINES += WANT_PLUGIN | |||||
DEFINES += WANT_FLUIDSYNTH | |||||
#DEFINES += WANT_LINUXSAMPLER | |||||
DEFINES += WANT_OPENGL | |||||
DEFINES += WANT_AUDIOFILE | |||||
DEFINES += WANT_MIDIFILE | |||||
DEFINES += WANT_ZYNADDSUBFX | |||||
DEFINES += WANT_ZYNADDSUBFX_UI | |||||
# Plugin | |||||
PKGCONFIG += liblo | |||||
# FluidSynth | |||||
PKGCONFIG += fluidsynth | |||||
# LinuxSampler | |||||
#PKGCONFIG += linuxsampler | |||||
# ------------------------------------------------------- | |||||
SOURCES = \ | |||||
CarlaPlugin.cpp \ | |||||
CarlaPluginGui.cpp \ | |||||
CarlaPluginThread.cpp \ | |||||
BridgePlugin.cpp \ | |||||
NativePlugin.cpp \ | |||||
LadspaPlugin.cpp \ | |||||
DssiPlugin.cpp \ | |||||
Lv2Plugin.cpp \ | |||||
VstPlugin.cpp \ | |||||
Vst3Plugin.cpp \ | |||||
JucePlugin.cpp \ | |||||
FluidSynthPlugin.cpp \ | |||||
LinuxSamplerPlugin.cpp | |||||
HEADERS = \ | |||||
CarlaPluginInternal.hpp \ | |||||
CarlaPluginGui.hpp \ | |||||
CarlaPluginThread.hpp | |||||
HEADERS += \ | |||||
../CarlaBackend.hpp \ | |||||
../CarlaEngine.hpp \ | |||||
../CarlaNative.h \ | |||||
../CarlaPlugin.hpp | |||||
HEADERS += \ | |||||
../../includes/CarlaDefines.hpp \ | |||||
../../includes/CarlaMIDI.h \ | |||||
../../includes/ladspa_rdf.hpp \ | |||||
../../includes/lv2_rdf.hpp | |||||
HEADERS += \ | |||||
../../utils/CarlaMutex.hpp \ | |||||
../../utils/CarlaRingBuffer.hpp \ | |||||
../../utils/CarlaString.hpp \ | |||||
../../utils/CarlaUtils.hpp \ | |||||
../../utils/CarlaBackendUtils.hpp \ | |||||
../../utils/CarlaBridgeUtils.hpp \ | |||||
../../utils/CarlaJuceUtils.hpp \ | |||||
../../utils/CarlaLibUtils.hpp \ | |||||
../../utils/CarlaOscUtils.hpp \ | |||||
../../utils/CarlaStateUtils.hpp \ | |||||
../../utils/Lv2AtomQueue.hpp \ | |||||
../../utils/RtList.hpp | |||||
INCLUDEPATH = . .. \ | |||||
../../includes \ | |||||
../../modules \ | |||||
../../utils | |||||
QMAKE_CXXFLAGS += -std=c++0x |
@@ -1,43 +0,0 @@ | |||||
# QtCreator project file | |||||
QT = core | |||||
CONFIG = debug link_pkgconfig qt warn_on | |||||
PKGCONFIG = liblo gtk+-2.0 | |||||
TARGET = carla-bridge-lv2-gtk2 | |||||
TEMPLATE = app | |||||
VERSION = 0.5.0 | |||||
SOURCES = \ | |||||
../carla_bridge_client.cpp \ | |||||
../carla_bridge_osc.cpp \ | |||||
../carla_bridge_toolkit.cpp \ | |||||
../carla_bridge_toolkit-gtk.cpp \ | |||||
../carla_bridge_ui-lv2.cpp | |||||
HEADERS = \ | |||||
../carla_bridge.hpp \ | |||||
../carla_bridge_client.hpp \ | |||||
../carla_bridge_osc.hpp \ | |||||
../carla_bridge_toolkit.hpp \ | |||||
../../carla-includes/carla_defines.hpp \ | |||||
../../carla-includes/carla_midi.h \ | |||||
../../carla-includes/lv2_rdf.hpp \ | |||||
../../carla-utils/carla_lib_utils.hpp \ | |||||
../../carla-utils/carla_osc_utils.hpp \ | |||||
../../carla-utils/carla_lv2_utils.hpp | |||||
INCLUDEPATH = .. \ | |||||
../../carla-includes \ | |||||
../../carla-utils | |||||
LIBS = \ | |||||
../../carla-lilv/carla_lilv.a \ | |||||
../../carla-rtmempool/carla_rtmempool.a | |||||
DEFINES = QTCREATOR_TEST | |||||
DEFINES += DEBUG | |||||
DEFINES += BUILD_BRIDGE BUILD_BRIDGE_UI BRIDGE_GTK2 | |||||
QMAKE_CXXFLAGS *= -std=c++0x |
@@ -1,43 +0,0 @@ | |||||
# QtCreator project file | |||||
QT = core | |||||
CONFIG = debug link_pkgconfig qt warn_on | |||||
PKGCONFIG = liblo gtk+-3.0 | |||||
TARGET = carla-bridge-lv2-gtk3 | |||||
TEMPLATE = app | |||||
VERSION = 0.5.0 | |||||
SOURCES = \ | |||||
../carla_bridge_client.cpp \ | |||||
../carla_bridge_osc.cpp \ | |||||
../carla_bridge_toolkit.cpp \ | |||||
../carla_bridge_toolkit-gtk.cpp \ | |||||
../carla_bridge_ui-lv2.cpp | |||||
HEADERS = \ | |||||
../carla_bridge.hpp \ | |||||
../carla_bridge_client.hpp \ | |||||
../carla_bridge_osc.hpp \ | |||||
../carla_bridge_toolkit.hpp \ | |||||
../../carla-includes/carla_defines.hpp \ | |||||
../../carla-includes/carla_midi.h \ | |||||
../../carla-includes/lv2_rdf.hpp \ | |||||
../../carla-utils/carla_lib_utils.hpp \ | |||||
../../carla-utils/carla_osc_utils.hpp \ | |||||
../../carla-utils/carla_lv2_utils.hpp | |||||
INCLUDEPATH = .. \ | |||||
../../carla-includes \ | |||||
../../carla-utils | |||||
LIBS = \ | |||||
../../carla-lilv/carla_lilv.a \ | |||||
../../carla-rtmempool/carla_rtmempool.a | |||||
DEFINES = QTCREATOR_TEST | |||||
DEFINES += DEBUG | |||||
DEFINES += BUILD_BRIDGE BUILD_BRIDGE_UI BRIDGE_GTK3 | |||||
QMAKE_CXXFLAGS *= -std=c++0x |
@@ -1,57 +0,0 @@ | |||||
# QtCreator project file | |||||
QT = core gui | |||||
TARGET = carla-bridge-lv2-qt4 | |||||
TEMPLATE = app | |||||
# ------------------------------------------------------- | |||||
CONFIG = debug | |||||
CONFIG += link_pkgconfig qt warn_on | |||||
DEFINES = DEBUG | |||||
DEFINES += HAVE_CPP11_SUPPORT | |||||
DEFINES += QTCREATOR_TEST | |||||
DEFINES += BUILD_BRIDGE | |||||
DEFINES += BUILD_BRIDGE_UI | |||||
DEFINES += BRIDGE_QT4 | |||||
PKGCONFIG = liblo | |||||
SOURCES = \ | |||||
../CarlaBridgeClient.cpp \ | |||||
../CarlaBridgeOsc.cpp \ | |||||
../CarlaBridgeToolkit.cpp \ | |||||
../CarlaBridgeToolkitQt.cpp \ | |||||
../CarlaBridgeUI-LV2.cpp | |||||
HEADERS = \ | |||||
../CarlaBridge.hpp \ | |||||
../CarlaBridgeClient.hpp \ | |||||
../CarlaBridgeOsc.hpp \ | |||||
../CarlaBridgeToolkit.hpp \ | |||||
../../includes/CarlaDefines.hpp \ | |||||
../../includes/CarlaMIDI.h \ | |||||
../../includes/lv2_rdf.hpp \ | |||||
../../utils/CarlaJuceUtils.hpp \ | |||||
../../utils/CarlaLibUtils.hpp \ | |||||
../../utils/CarlaLv2Utils.hpp \ | |||||
../../utils/CarlaOscUtils.hpp \ | |||||
../../utils/CarlaUtils.hpp \ | |||||
../../utils/CarlaString.hpp \ | |||||
../../utils/RtList.hpp | |||||
INCLUDEPATH = .. \ | |||||
../../includes \ | |||||
../../libs \ | |||||
../../theme \ | |||||
../../utils | |||||
LIBS = -ldl | |||||
LIBS += ../../libs/lilv.a | |||||
LIBS += ../../libs/rtmempool.a | |||||
LIBS += ../../libs/theme.a | |||||
QMAKE_CXXFLAGS *= -std=c++0x |
@@ -1,43 +0,0 @@ | |||||
# QtCreator project file | |||||
QT = core widgets | |||||
CONFIG = debug link_pkgconfig qt warn_on | |||||
PKGCONFIG = liblo | |||||
TARGET = carla-bridge-lv2-qt5 | |||||
TEMPLATE = app | |||||
VERSION = 0.5.0 | |||||
SOURCES = \ | |||||
../carla_bridge_client.cpp \ | |||||
../carla_bridge_osc.cpp \ | |||||
../carla_bridge_toolkit.cpp \ | |||||
../carla_bridge_toolkit-qt.cpp \ | |||||
../carla_bridge_ui-lv2.cpp | |||||
HEADERS = \ | |||||
../carla_bridge.hpp \ | |||||
../carla_bridge_client.hpp \ | |||||
../carla_bridge_osc.hpp \ | |||||
../carla_bridge_toolkit.hpp \ | |||||
../../carla-includes/carla_defines.hpp \ | |||||
../../carla-includes/carla_midi.h \ | |||||
../../carla-includes/lv2_rdf.hpp \ | |||||
../../carla-utils/carla_lib_utils.hpp \ | |||||
../../carla-utils/carla_osc_utils.hpp \ | |||||
../../carla-utils/carla_lv2_utils.hpp | |||||
INCLUDEPATH = .. \ | |||||
../../carla-includes \ | |||||
../../carla-utils | |||||
LIBS = \ | |||||
../../carla-lilv/carla_lilv.a \ | |||||
../../carla-rtmempool/carla_rtmempool.a | |||||
DEFINES = QTCREATOR_TEST | |||||
DEFINES += DEBUG | |||||
DEFINES += BUILD_BRIDGE BUILD_BRIDGE_UI BRIDGE_QT5 | |||||
QMAKE_CXXFLAGS *= -std=c++0x |
@@ -1,47 +0,0 @@ | |||||
# QtCreator project file | |||||
contains(QT_VERSION, ^5.*) { | |||||
QT = core widgets | |||||
} else { | |||||
QT = core gui | |||||
} | |||||
CONFIG = debug link_pkgconfig qt warn_on | |||||
PKGCONFIG = liblo | |||||
TARGET = carla-bridge-lv2-x11 | |||||
TEMPLATE = app | |||||
VERSION = 0.5.0 | |||||
SOURCES = \ | |||||
../carla_bridge_client.cpp \ | |||||
../carla_bridge_osc.cpp \ | |||||
../carla_bridge_toolkit.cpp \ | |||||
../carla_bridge_toolkit-qt.cpp \ | |||||
../carla_bridge_ui-lv2.cpp | |||||
HEADERS = \ | |||||
../carla_bridge.hpp \ | |||||
../carla_bridge_client.hpp \ | |||||
../carla_bridge_osc.hpp \ | |||||
../carla_bridge_toolkit.hpp \ | |||||
../../carla-includes/carla_defines.hpp \ | |||||
../../carla-includes/carla_midi.h \ | |||||
../../carla-includes/lv2_rdf.hpp \ | |||||
../../carla-utils/carla_lib_utils.hpp \ | |||||
../../carla-utils/carla_osc_utils.hpp \ | |||||
../../carla-utils/carla_lv2_utils.hpp | |||||
INCLUDEPATH = .. \ | |||||
../../carla-includes \ | |||||
../../carla-utils | |||||
LIBS = \ | |||||
../../carla-lilv/carla_lilv.a \ | |||||
../../carla-rtmempool/carla_rtmempool.a | |||||
DEFINES = QTCREATOR_TEST | |||||
DEFINES += DEBUG | |||||
DEFINES += BUILD_BRIDGE BUILD_BRIDGE_UI BRIDGE_X11 | |||||
QMAKE_CXXFLAGS *= -std=c++0x |
@@ -1,144 +0,0 @@ | |||||
# QtCreator project file | |||||
TARGET = carla-bridge-qtcreator | |||||
TEMPLATE = app | |||||
# ------------------------------------------------------- | |||||
CONFIG = debug | |||||
CONFIG += link_pkgconfig warn_on | |||||
DEFINES = DEBUG | |||||
DEFINES += HAVE_CPP11_SUPPORT | |||||
DEFINES += QTCREATOR_TEST | |||||
DEFINES += BUILD_BRIDGE | |||||
DEFINES += BUILD_BRIDGE_PLUGIN | |||||
# Shared | |||||
DEFINES += WANT_NATIVE | |||||
DEFINES += WANT_LADSPA | |||||
DEFINES += WANT_DSSI | |||||
DEFINES += WANT_LV2 | |||||
DEFINES += WANT_VST | |||||
DEFINES += WANT_AU | |||||
DEFINES += WANT_CSOUND | |||||
DEFINES += WANT_FLUIDSYNTH | |||||
DEFINES += WANT_LINUXSAMPLER | |||||
DEFINES += WANT_OPENGL | |||||
DEFINES += WANT_AUDIOFILE | |||||
DEFINES += WANT_MIDIFILE | |||||
DEFINES += WANT_ZYNADDSUBFX | |||||
DEFINES += WANT_ZYNADDSUBFX_UI | |||||
# Engine | |||||
PKGCONFIG = liblo | |||||
# FluidSynth | |||||
PKGCONFIG += fluidsynth | |||||
# LinuxSampler | |||||
PKGCONFIG += linuxsampler | |||||
# MidiFile | |||||
PKGCONFIG += smf | |||||
# OpenGL | |||||
PKGCONFIG += gl | |||||
# ZynAddSubFX | |||||
PKGCONFIG += fftw3 mxml zlib ntk ntk_images | |||||
# ----------------------------------------------------------- | |||||
SOURCES = \ | |||||
../CarlaBridgeClient.cpp \ | |||||
../CarlaBridgeOsc.cpp \ | |||||
../CarlaBridgePlugin.cpp | |||||
HEADERS = \ | |||||
../CarlaBridge.hpp \ | |||||
../CarlaBridgeClient.hpp \ | |||||
../CarlaBridgeOsc.hpp | |||||
# ----------------------------------------------------------- | |||||
# Engine | |||||
SOURCES += \ | |||||
../../backend/engine/CarlaEngine.cpp \ | |||||
../../backend/engine/CarlaEngineOsc.cpp \ | |||||
../../backend/engine/CarlaEngineThread.cpp \ | |||||
../../backend/engine/CarlaEngineBridge.cpp \ | |||||
../../backend/engine/CarlaEngineJack.cpp \ | |||||
../../backend/engine/CarlaEngineNative.cpp | |||||
# ../../backend/engine/CarlaEngineJuce.cpp \ | |||||
# ../../backend/engine/CarlaEngineRtAudio.cpp | |||||
# Plugin | |||||
SOURCES += \ | |||||
../../backend/plugin/CarlaPlugin.cpp \ | |||||
../../backend/plugin/CarlaPluginThread.cpp \ | |||||
../../backend/plugin/BridgePlugin.cpp \ | |||||
../../backend/plugin/NativePlugin.cpp \ | |||||
../../backend/plugin/LadspaPlugin.cpp \ | |||||
../../backend/plugin/DssiPlugin.cpp \ | |||||
../../backend/plugin/Lv2Plugin.cpp \ | |||||
../../backend/plugin/VstPlugin.cpp \ | |||||
../../backend/plugin/CsoundPlugin.cpp \ | |||||
../../backend/plugin/FluidSynthPlugin.cpp \ | |||||
../../backend/plugin/LinuxSamplerPlugin.cpp | |||||
# Standalone | |||||
SOURCES += \ | |||||
../../backend/standalone/CarlaStandalone.cpp | |||||
# ----------------------------------------------------------- | |||||
# common | |||||
HEADERS += \ | |||||
../../backend/*.hpp | |||||
# engine | |||||
HEADERS += \ | |||||
../../backend/engine/*.hpp | |||||
# plugin | |||||
HEADERS += \ | |||||
../../backend/plugin/*.hpp | |||||
# includes | |||||
HEADERS += \ | |||||
../../includes/*.h \ | |||||
../../includes/*.hpp | |||||
# modules | |||||
HEADERS += \ | |||||
../../modules/*.h \ | |||||
../../modules/*.hpp | |||||
# utils | |||||
HEADERS += \ | |||||
../../utils/*.hpp | |||||
INCLUDEPATH = .. \ | |||||
../../backend \ | |||||
../../backend/engine \ | |||||
../../backend/plugin \ | |||||
../../includes \ | |||||
../../modules \ | |||||
../../utils | |||||
# ----------------------------------------------------------- | |||||
LIBS = -ldl -lpthread -lrt | |||||
LIBS += ../../modules/daz-plugins.a | |||||
LIBS += ../../modules/juce_audio_basics.a | |||||
LIBS += ../../modules/juce_core.a | |||||
LIBS += ../../modules/juce_data_structures.a | |||||
LIBS += ../../modules/juce_events.a | |||||
LIBS += ../../modules/rtmempool.a | |||||
LIBS += ../../modules/dgl.a | |||||
LIBS += ../../modules/lilv.a | |||||
QMAKE_CXXFLAGS *= -std=gnu++0x |
@@ -1,71 +0,0 @@ | |||||
# QtCreator project file | |||||
TARGET = carla-discovery-qtcreator | |||||
TEMPLATE = app | |||||
VERSION = 1.9 | |||||
# ------------------------------------------------------- | |||||
CONFIG = debug | |||||
CONFIG += link_pkgconfig warn_on | |||||
# ------------------------------------------------------- | |||||
DEFINES = DEBUG REAL_BUILD | |||||
DEFINES += QTCREATOR_TEST | |||||
DEFINES += HAVE_FLUIDSYNTH | |||||
DEFINES += HAVE_LINUXSAMPLER | |||||
DEFINES += HAVE_X11 | |||||
DEFINES += VESTIGE_HEADER | |||||
DEFINES += WANT_ZYNADDSUBFX | |||||
DEFINES += WANT_ZYNADDSUBFX_UI | |||||
# ------------------------------------------------------- | |||||
PKGCONFIG = fluidsynth | |||||
PKGCONFIG += linuxsampler | |||||
# ------------------------------------------------------- | |||||
LIBS = ../modules/juce_core.a | |||||
LIBS += ../modules/lilv.a | |||||
LIBS += -ldl | |||||
# ------------------------------------------------------- | |||||
SOURCES = \ | |||||
carla-discovery.cpp | |||||
HEADERS = \ | |||||
../backend/CarlaBackend.hpp | |||||
HEADERS += \ | |||||
../includes/CarlaDefines.hpp \ | |||||
../includes/CarlaMIDI.h | |||||
HEADERS += \ | |||||
../modules/ladspa_rdf.hpp \ | |||||
../modules/lv2_rdf.hpp | |||||
HEADERS += \ | |||||
../utils/CarlaUtils.hpp \ | |||||
../utils/CarlaBackendUtils.hpp \ | |||||
../utils/CarlaLibUtils.hpp \ | |||||
../utils/CarlaMathUtils.hpp \ | |||||
../utils/CarlaLadspaUtils.hpp \ | |||||
../utils/CarlaDssiUtils.hpp \ | |||||
../utils/CarlaLv2Utils.hpp \ | |||||
../utils/CarlaVstUtils.hpp | |||||
INCLUDEPATH = \ | |||||
../backend \ | |||||
../includes \ | |||||
../modules \ | |||||
../utils | |||||
# ------------------------------------------------------- | |||||
QMAKE_CXXFLAGS *= -std=c++11 | |||||
# ------------------------------------------------------- |