Mercurial > hg > piper-vamp-js-builds
annotate vamp-example-plugins/Makefile @ 53:f8110ba54f1b
Update vext
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 17 Jul 2017 16:07:46 +0100 |
parents | ec5b5a9adac2 |
children |
rev | line source |
---|---|
c@40 | 1 |
c@50 | 2 PIPER_VAMP_JS_DIR := ../ext/piper-vamp-js |
c@50 | 3 PLUGIN_SRC_DIR := ../ext/vamp-plugin-sdk/examples |
c@40 | 4 |
c@40 | 5 MODULE_NAME := VampExamplePlugins |
c@40 | 6 MODULE_SOURCE := vamp-example-plugins.cpp |
c@40 | 7 |
c@40 | 8 SOURCE_FILES := \ |
c@40 | 9 ZeroCrossing.cpp \ |
c@40 | 10 SpectralCentroid.cpp \ |
c@40 | 11 PercussionOnsetDetector.cpp \ |
c@40 | 12 FixedTempoEstimator.cpp \ |
c@40 | 13 AmplitudeFollower.cpp \ |
c@40 | 14 PowerSpectrum.cpp |
c@40 | 15 |
c@40 | 16 PLUGIN_SOURCES := $(addprefix $(PLUGIN_SRC_DIR)/,$(SOURCE_FILES)) |
c@40 | 17 |
c@40 | 18 INCLUDES := -I$(PLUGIN_SRC_DIR) |
c@40 | 19 |
c@40 | 20 include $(PIPER_VAMP_JS_DIR)/Makefile.inc |