Browse Source

Disable VULT, LIBPD, and FAUST in Makefile

Updated configuration options for VULT, LIBPD, and FAUST to be disabled by default.
pull/81/head
András Szabó GitHub 3 weeks ago
parent
commit
b5a61cc564
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      Makefile

+ 5
- 4
Makefile View File

@@ -19,9 +19,9 @@ QUICKJS ?= 1
LUAJIT ?= 0 # 1
PYTHON ?= 0
SUPERCOLLIDER ?= 0 # 1
VULT ?= 1
LIBPD ?= 1 # 1
FAUST ?= 1
VULT ?= 0 # 1
LIBPD ?= 0 # 1
FAUST ?= 0 # 1

# Vult depends on both LuaJIT and QuickJS
ifeq ($(VULT), 1)
@@ -31,6 +31,7 @@ endif


# Entropia File System Watcher
ifdef false #added to debug
ifdef ARCH_WIN
efsw := dep/lib/efsw-static-release.lib
else
@@ -53,7 +54,7 @@ else
cd efsw && cp lib/libefsw-static-release.a $(DEP_PATH)/lib/
endif
cd efsw && cp -R include/efsw $(DEP_PATH)/include/
end if #added to debug

# Duktape
ifeq ($(DUKTAPE), 1)


Loading…
Cancel
Save