aboutsummaryrefslogtreecommitdiff
path: root/sndfiler/build
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:14:38 +0200
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:14:38 +0200
commit28b7e464fd119b8c848753a1f41070422c463c41 (patch)
tree07449abdf85d8f1fd4068839b974242b429720ca /sndfiler/build
parent90c6018a9401e38859f733b3521c919e042322b7 (diff)
parent6932ee2d22511226378218992b0005cb01eb235e (diff)
- abstractions/tb - externals/tb
Diffstat (limited to 'sndfiler/build')
-rw-r--r--sndfiler/build/config-lnx.def1
-rw-r--r--sndfiler/build/config-mac.def1
-rw-r--r--sndfiler/build/config-win.def5
-rw-r--r--sndfiler/build/gnumake-lnx-gcc.inc1
-rw-r--r--sndfiler/build/gnumake-mac-gcc.inc1
-rw-r--r--sndfiler/build/gnumake-win-cygwin.inc3
-rw-r--r--sndfiler/build/gnumake-win-mingw.inc3
-rw-r--r--sndfiler/build/nmake-win-msvc.inc3
8 files changed, 18 insertions, 0 deletions
diff --git a/sndfiler/build/config-lnx.def b/sndfiler/build/config-lnx.def
new file mode 100644
index 0000000..fc37b7e
--- /dev/null
+++ b/sndfiler/build/config-lnx.def
@@ -0,0 +1 @@
+# nothing to set
diff --git a/sndfiler/build/config-mac.def b/sndfiler/build/config-mac.def
new file mode 100644
index 0000000..fc37b7e
--- /dev/null
+++ b/sndfiler/build/config-mac.def
@@ -0,0 +1 @@
+# nothing to set
diff --git a/sndfiler/build/config-win.def b/sndfiler/build/config-win.def
new file mode 100644
index 0000000..bd7bf72
--- /dev/null
+++ b/sndfiler/build/config-win.def
@@ -0,0 +1,5 @@
+# where is the libsndfile installation?
+SNDFILEPATH=%programfiles%\libsndfile
+
+SNDFILEINC=$(SNDFILEPATH)\src
+SNDFILELIB=$(SNDFILEPATH)
diff --git a/sndfiler/build/gnumake-lnx-gcc.inc b/sndfiler/build/gnumake-lnx-gcc.inc
new file mode 100644
index 0000000..3314475
--- /dev/null
+++ b/sndfiler/build/gnumake-lnx-gcc.inc
@@ -0,0 +1 @@
+LIBS += -lsndfile
diff --git a/sndfiler/build/gnumake-mac-gcc.inc b/sndfiler/build/gnumake-mac-gcc.inc
new file mode 100644
index 0000000..3314475
--- /dev/null
+++ b/sndfiler/build/gnumake-mac-gcc.inc
@@ -0,0 +1 @@
+LIBS += -lsndfile
diff --git a/sndfiler/build/gnumake-win-cygwin.inc b/sndfiler/build/gnumake-win-cygwin.inc
new file mode 100644
index 0000000..3b7c000
--- /dev/null
+++ b/sndfiler/build/gnumake-win-cygwin.inc
@@ -0,0 +1,3 @@
+INCPATH += -I$(SNDFILEINC)
+LIBPATH += -L$(SNDFILELIB)
+LIBS += -lsndfile
diff --git a/sndfiler/build/gnumake-win-mingw.inc b/sndfiler/build/gnumake-win-mingw.inc
new file mode 100644
index 0000000..3b7c000
--- /dev/null
+++ b/sndfiler/build/gnumake-win-mingw.inc
@@ -0,0 +1,3 @@
+INCPATH += -I$(SNDFILEINC)
+LIBPATH += -L$(SNDFILELIB)
+LIBS += -lsndfile
diff --git a/sndfiler/build/nmake-win-msvc.inc b/sndfiler/build/nmake-win-msvc.inc
new file mode 100644
index 0000000..9b832cc
--- /dev/null
+++ b/sndfiler/build/nmake-win-msvc.inc
@@ -0,0 +1,3 @@
+INCPATH=$(INCPATH) /I$(SNDFILEINC)
+LIBPATH=$(LIBPATH) /LIBPATH:$(SNDFILELIB)
+LIBS=$(LIBS) libsndfile.lib