Skip to content

Commit 640a87b

Browse files
committed
Add GML library as submodule
https://github.com/ilmola/gml/
1 parent 2cd8288 commit 640a87b

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "gml"]
2+
path = gml
3+
url = https://github.com/ilmola/gml.git

gml

Submodule gml added at 154c1d1

src/Makefile.am

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ AM_CPPFLAGS =
2323
## Add Audio Processing Framework (APF) path
2424
AM_CPPFLAGS += -I$(srcdir)/../apf
2525

26+
## Add GML path
27+
AM_CPPFLAGS += -I$(srcdir)/../gml/include
28+
2629
if ENABLE_APP_BUNDLE
2730
AM_CPPFLAGS += -DSSR_DATA_DIR=\"SoundScapeRenderer.app/Contents/Resources\"
2831
else
@@ -41,7 +44,9 @@ DOXYGEN_DOC_DIR = ../doc/doxygen
4144
# files which should be distributed but not installed
4245
dist_noinst_DATA = Doxyfile coding_style.txt \
4346
../apf/misc/Makefile.dependencies \
44-
../apf/apf/mextools.h
47+
../apf/apf/mextools.h \
48+
../gml/README.md \
49+
../gml/LICENSE.txt
4550

4651
ssr_binaural_SOURCES = ssr_binaural.cpp binauralrenderer.h \
4752
$(SSRSOURCES)
@@ -114,6 +119,8 @@ SSRSOURCES = \
114119
../apf/apf/shareddata.h \
115120
../apf/apf/sndfiletools.h \
116121
../apf/apf/stringtools.h \
122+
../gml/include/gml/vec.hpp \
123+
../gml/include/gml/quaternion.hpp \
117124
configuration.cpp \
118125
configuration.h \
119126
controller.h \

0 commit comments

Comments
 (0)