summaryrefslogtreecommitdiff
path: root/pjmedia/build/os-win32.mak
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-03-16 14:24:26 +0000
committerBenny Prijono <bennylp@teluu.com>2006-03-16 14:24:26 +0000
commitc0598144d962fbc8c20482bdc5e00e99ec62f8a9 (patch)
treec7891e82c998f549f375c6a72da822ff5a4fe9db /pjmedia/build/os-win32.mak
parent91329274db688fbb43ce0dc80f9174cc82489a48 (diff)
Added misc flags and modify Makefiles to allow exclusion of PortAudio and specific codec during compilation
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@320 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/build/os-win32.mak')
-rw-r--r--pjmedia/build/os-win32.mak11
1 files changed, 11 insertions, 0 deletions
diff --git a/pjmedia/build/os-win32.mak b/pjmedia/build/os-win32.mak
index 1832cd66..ffd043b0 100644
--- a/pjmedia/build/os-win32.mak
+++ b/pjmedia/build/os-win32.mak
@@ -11,3 +11,14 @@ export PJMEDIA_OBJS += $(PA_DIR)/pa_win_hostapis.o $(PA_DIR)/pa_win_util.o \
$(PA_DIR)/pa_win_wmme.o
export OS_CFLAGS += -DPA_NO_ASIO -DPA_NO_DS
+
+# Example:
+# to activate Null sound, uncomment this line below.
+#export SOUND_OBJS = $(NULLSOUND_OBJS)
+
+# Example:
+# to include only GSM and exclude Speex codec, uncomment the "export" line below.
+# Note that you'll need to put "#define PJMEDIA_HAS_SPEEX_CODEC 0" in
+# <pj/config_site.h>
+#export CODEC_OBJS = $(GSM_OBJS)
+