[mapserver-commits] r7862 - trunk/mapserver/mapscript/csharp
svn at osgeo.org
svn at osgeo.org
Fri Aug 15 13:47:54 EDT 2008
Author: tamas
Date: 2008-08-15 13:47:54 -0400 (Fri, 15 Aug 2008)
New Revision: 7862
Modified:
trunk/mapserver/mapscript/csharp/Makefile.vc
Log:
Use MS_DEBUG to include the debug switch to the CSC command line
Modified: trunk/mapserver/mapscript/csharp/Makefile.vc
===================================================================
--- trunk/mapserver/mapscript/csharp/Makefile.vc 2008-08-15 17:34:35 UTC (rev 7861)
+++ trunk/mapserver/mapscript/csharp/Makefile.vc 2008-08-15 17:47:54 UTC (rev 7862)
@@ -27,17 +27,23 @@
CC= cl
LINK= link
+!IFDEF MS_DEBUG
+CSDEBUG = /debug:full
+!ELSE
+CSDEBUG =
+!ENDIF
+
!IFDEF MONO
CSC = mcs
!ELSE
!IF $(MSVC_VER) == 1400
!IFDEF WIN64
-CSC = csc /platform:anycpu
+CSC = csc /platform:anycpu $(CSDEBUG)
!ELSE
-CSC = csc /platform:x86
+CSC = csc /platform:x86 $(CSDEBUG)
!ENDIF
!ELSE
-CSC = csc
+CSC = csc $(CSDEBUG)
!ENDIF
!ENDIF
More information about the mapserver-commits
mailing list