zohann commited on
Commit
31160c8
·
verified ·
1 Parent(s): c72c16e

Upload Audio_Effects_SDK/samples/effects_demo/Makefile with huggingface_hub

Browse files
Audio_Effects_SDK/samples/effects_demo/Makefile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Simple makefile to compile effects_demo sample app
2
+
3
+ FLAGS=-I"../../nvafx/include/"
4
+ FLAGS+=-I"../" # Util headers
5
+ FLAGS+=-Wl,--disable-new-dtags
6
+ FLAGS+=-Wl,--unresolved-symbols=ignore-in-shared-libs
7
+ FLAGS+=-L"../../nvafx/lib" -l"nv_audiofx" -Wl,-rpath,'$$ORIGIN/../../nvafx/lib'
8
+ FLAGS+=-L"../../external/cuda/lib/" -l"cudart" -Wl,-rpath,'$$ORIGIN/../../external/cuda/lib'
9
+ FLAGS+=-DMAX_INPUTS=1024
10
+
11
+ all:
12
+ g++ -std=c++11 effects_demo.cpp ../utils/ConfigReader.cpp ../utils/wave_reader/waveReadWrite.cpp -o effects_demo $(FLAGS)