zohann's picture
Upload Audio_Effects_SDK/samples/effects_demo/Makefile with huggingface_hub
31160c8 verified
raw
history blame contribute delete
527 Bytes
# Simple makefile to compile effects_demo sample app
FLAGS=-I"../../nvafx/include/"
FLAGS+=-I"../" # Util headers
FLAGS+=-Wl,--disable-new-dtags
FLAGS+=-Wl,--unresolved-symbols=ignore-in-shared-libs
FLAGS+=-L"../../nvafx/lib" -l"nv_audiofx" -Wl,-rpath,'$$ORIGIN/../../nvafx/lib'
FLAGS+=-L"../../external/cuda/lib/" -l"cudart" -Wl,-rpath,'$$ORIGIN/../../external/cuda/lib'
FLAGS+=-DMAX_INPUTS=1024
all:
g++ -std=c++11 effects_demo.cpp ../utils/ConfigReader.cpp ../utils/wave_reader/waveReadWrite.cpp -o effects_demo $(FLAGS)