summaryrefslogtreecommitdiff
path: root/pjsip-apps/build/Samples-vc.mak
diff options
context:
space:
mode:
authorPerry Ismangil <perry@teluu.com>2009-03-30 12:15:43 +0000
committerPerry Ismangil <perry@teluu.com>2009-03-30 12:15:43 +0000
commit7411958cba930fb3c25bdcc07b8fe4de13103a2b (patch)
tree3f3818681e7536300024449547c2c3079d2161aa /pjsip-apps/build/Samples-vc.mak
parent5f354280b23498b24e1aaae2ad1281e821f486c0 (diff)
Addition of Debug-Static, Debug-Dynamic, Release-Static, and Release-Dynamic build configuration for Visual Studio, for Win32 target
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2559 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip-apps/build/Samples-vc.mak')
-rw-r--r--pjsip-apps/build/Samples-vc.mak9
1 files changed, 8 insertions, 1 deletions
diff --git a/pjsip-apps/build/Samples-vc.mak b/pjsip-apps/build/Samples-vc.mak
index f17d9925..60bca3f4 100644
--- a/pjsip-apps/build/Samples-vc.mak
+++ b/pjsip-apps/build/Samples-vc.mak
@@ -1,10 +1,17 @@
-TARGET = i386-win32-vc$(VC_VER)-$(BUILD_MODE)
LIBEXT = .lib
!if "$(BUILD_MODE)" == "debug"
+TARGET = i386-win32-vc$(VC_VER)-debug
BUILD_FLAGS = /MTd /Od /Zi /W4
+!elseif "$(BUILD_MODE)" == "debug-dynamic"
+TARGET = i386-win32-vc$(VC_VER)-debug
+BUILD_FLAGS = /MDd /Od /Zi /W4
+!elseif "$(BUILD_MODE)" == "release-static"
+TARGET = i386-win32-vc$(VC_VER)-release
+BUILD_FLAGS = /Ox /MT /DNDEBUG /W4
!else
+TARGET = i386-win32-vc$(VC_VER)-$(BUILD_MODE)
BUILD_FLAGS = /Ox /MD /DNDEBUG /W4
!endif