Browse Source

Build carla

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.3.0-RC1
falkTX 2 years ago
parent
commit
5fbae683e8
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 33 additions and 0 deletions
  1. +3
    -0
      .gitmodules
  2. +1
    -0
      Carla
  3. +29
    -0
      build.sh

+ 3
- 0
.gitmodules View File

@@ -1,3 +1,6 @@
[submodule "PawPaw"]
path = PawPaw
url = https://github.com/DISTRHO/PawPaw.git
[submodule "Carla"]
path = Carla
url = https://github.com/falkTX/Carla.git

+ 1
- 0
Carla

@@ -0,0 +1 @@
Subproject commit c14ec23ab96adab14ae298a5bdb7c5d065e9aa0f

+ 29
- 0
build.sh View File

@@ -0,0 +1,29 @@
#!/bin/bash

set -e

cd $(dirname ${0})

# ---------------------------------------------------------------------------------------------------------------------

target="${1}"

if [ -z "${target}" ]; then
echo "usage: ${0} <target>"
exit 1
fi

# ---------------------------------------------------------------------------------------------------------------------

pushd PawPaw
source local.env ${target}
popd

# ---------------------------------------------------------------------------------------------------------------------

pushd Carla
make features
make ${MAKE_ARGS}
popd

# ---------------------------------------------------------------------------------------------------------------------

Loading…
Cancel
Save