forked from LMMS/lmms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to Xenial build environment (LMMS#4813)
* Switch to Xenial build environment * Add Carla submodule/weak linking support, related LMMS#3963 * Fix Carla detection in AppImage, closes LMMS#5369
- Loading branch information
Showing
15 changed files
with
70 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
sudo add-apt-repository ppa:beineri/opt-qt592-trusty -y | ||
sudo add-apt-repository ppa:andrewrk/libgroove -y | ||
sudo sed -e "s/trusty/precise/" -i \ | ||
/etc/apt/sources.list.d/andrewrk-libgroove-trusty.list | ||
|
||
sudo dpkg --add-architecture i386 | ||
sudo apt-get update -qq || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// A dummy Carla interface | ||
#include "CarlaNativePlugin.h" | ||
|
||
const char* carla_get_library_filename() { return nullptr; } | ||
const char* carla_get_library_folder() { return nullptr; } | ||
const NativePluginDescriptor* carla_get_native_rack_plugin() { return nullptr; } | ||
const NativePluginDescriptor* carla_get_native_patchbay_plugin() { return nullptr; } | ||
const NativePluginDescriptor* carla_get_native_patchbay16_plugin() { return nullptr; } | ||
const NativePluginDescriptor* carla_get_native_patchbay32_plugin() { return nullptr; } | ||
const NativePluginDescriptor* carla_get_native_patchbay64_plugin() { return nullptr; } | ||
const NativePluginDescriptor* carla_get_native_patchbay_cv_plugin() { return nullptr; } | ||
CarlaBackend::CarlaEngine* carla_get_native_plugin_engine(const NativePluginDescriptor* desc, NativePluginHandle handle) { return nullptr; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
if(LMMS_HAVE_CARLA) | ||
if(LMMS_HAVE_CARLA OR LMMS_HAVE_WEAKCARLA) | ||
ADD_DEFINITIONS(-DCARLA_PLUGIN_PATCHBAY -DCARLA_PLUGIN_SYNTH) | ||
INCLUDE(BuildPlugin) | ||
INCLUDE_DIRECTORIES(${CARLA_INCLUDE_DIRS} "${CMAKE_CURRENT_SOURCE_DIR}/../carlabase") | ||
LINK_DIRECTORIES("${CMAKE_CURRENT_BINARY_DIR}/../carlabase" | ||
${CARLA_LIBRARY_DIRS}) | ||
LINK_LIBRARIES(carlabase) | ||
BUILD_PLUGIN(carlapatchbay carlapatchbay.cpp EMBEDDED_RESOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.png") | ||
endif(LMMS_HAVE_CARLA) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
if(LMMS_HAVE_CARLA) | ||
if(LMMS_HAVE_CARLA OR LMMS_HAVE_WEAKCARLA) | ||
ADD_DEFINITIONS(-DCARLA_PLUGIN_RACK -DCARLA_PLUGIN_SYNTH) | ||
INCLUDE(BuildPlugin) | ||
INCLUDE_DIRECTORIES(${CARLA_INCLUDE_DIRS} "${CMAKE_CURRENT_SOURCE_DIR}/../carlabase") | ||
LINK_DIRECTORIES("${CMAKE_CURRENT_BINARY_DIR}/../carlabase" | ||
${CARLA_LIBRARY_DIRS}) | ||
LINK_LIBRARIES(carlabase) | ||
BUILD_PLUGIN(carlarack carlarack.cpp EMBEDDED_RESOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.png") | ||
endif(LMMS_HAVE_CARLA) | ||
endif() |