You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
621 B
26 lines
621 B
LOCAL_PATH := $(call my-dir)/../../cpp/src
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := synth
|
|
LOCAL_CPP_EXTENSION := .cc
|
|
LOCAL_SRC_FILES := android_glue.cc \
|
|
dx7note.cc \
|
|
env.cc \
|
|
fm_core.cc \
|
|
fm_op_kernel.cc \
|
|
freqlut.cc \
|
|
resofilter.cc \
|
|
ringbuffer.cc \
|
|
sawtooth.cc \
|
|
sin.cc \
|
|
synth_unit.cc
|
|
|
|
# for native audio
|
|
LOCAL_LDLIBS += -lOpenSLES
|
|
# for logging
|
|
LOCAL_LDLIBS += -llog
|
|
|
|
LOCAL_CFLAGS := -O3
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
|