Upload Audio_Effects_SDK/samples/effects_delayed_streams_demo/Makefile with huggingface_hub
Browse files
Audio_Effects_SDK/samples/effects_delayed_streams_demo/Makefile
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Simple makefile to compile effects_delayed_streams_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/" -Wl,-rpath,'$$ORIGIN/../../external/cuda/lib'
|
| 9 |
+
|
| 10 |
+
all:
|
| 11 |
+
g++ -std=c++11 effects_delayed_streams_demo.cpp ../utils/ConfigReader.cpp ../utils/wave_reader/waveReadWrite.cpp -o effects_delayed_streams_demo $(FLAGS)
|