[mapserver-commits] r7183 - trunk/mapserver/mapscript/csharp
svn at osgeo.org
svn at osgeo.org
Mon Dec 17 16:58:45 EST 2007
Author: tamas
Date: 2007-12-17 16:58:45 -0500 (Mon, 17 Dec 2007)
New Revision: 7183
Modified:
trunk/mapserver/mapscript/csharp/Makefile.in
trunk/mapserver/mapscript/csharp/Makefile.vc
Log:
Added RFC24.cs to the makefiles (#2442)
Modified: trunk/mapserver/mapscript/csharp/Makefile.in
===================================================================
--- trunk/mapserver/mapscript/csharp/Makefile.in 2007-12-17 20:56:59 UTC (rev 7182)
+++ trunk/mapserver/mapscript/csharp/Makefile.in 2007-12-17 21:58:45 UTC (rev 7183)
@@ -238,6 +238,7 @@
$(CSC) /r:mapscript_csharp.dll /out:drawquery.exe examples/drawquery.cs
$(CSC) /r:mapscript_csharp.dll /r:System.Drawing.dll /out:getbytes.exe examples/getbytes.cs
$(CSC) /r:mapscript_csharp.dll /out:HTMLtemplate.exe examples/HTMLtemplate.cs
+ $(CSC) /r:mapscript_csharp.dll /out:RFC24.exe examples/RFC24.cs
dll_config: Makefile
rm -rf mapscript_csharp.dll.config
@@ -256,4 +257,5 @@
LC_ALL=C mono ./drawmap.exe ../../tests/test.map test_csharp_agg.png aggpng24
endif
LC_ALL=C mono ./getbytes.exe ../../tests/test.map test_csharp2.png
+ LC_ALL=C mono ./RFC24.exe ../../tests/test.map
Modified: trunk/mapserver/mapscript/csharp/Makefile.vc
===================================================================
--- trunk/mapserver/mapscript/csharp/Makefile.vc 2007-12-17 20:56:59 UTC (rev 7182)
+++ trunk/mapserver/mapscript/csharp/Makefile.vc 2007-12-17 21:58:45 UTC (rev 7183)
@@ -75,13 +75,14 @@
if exist $(MAPSCRIPT_DLL).manifest mt -manifest $(MAPSCRIPT_DLL).manifest -outputresource:$(MAPSCRIPT_DLL);2
$(CSHARP_DLL)::
- $(CSC) /t:library /out:mapscript_csharp.dll *.cs config\AssemblyInfo.cs
- $(CSC) /r:mapscript_csharp.dll /out:shpdump.exe examples\shpdump.cs
- $(CSC) /r:mapscript_csharp.dll /out:drawmap.exe examples\drawmap.cs
- $(CSC) /r:mapscript_csharp.dll /out:shapeinfo.exe examples\shapeinfo.cs
- $(CSC) /r:mapscript_csharp.dll /out:drawquery.exe examples\drawquery.cs
- $(CSC) /r:mapscript_csharp.dll /r:System.Drawing.dll /out:getbytes.exe examples\getbytes.cs
- $(CSC) /r:mapscript_csharp.dll /out:HTMLtemplate.exe examples\HTMLtemplate.cs
+ $(CSC) $(CSFLAGS) /t:library /out:mapscript_csharp.dll *.cs config\AssemblyInfo.cs
+ $(CSC) $(CSFLAGS) /r:mapscript_csharp.dll /out:shpdump.exe examples\shpdump.cs
+ $(CSC) $(CSFLAGS) /r:mapscript_csharp.dll /out:drawmap.exe examples\drawmap.cs
+ $(CSC) $(CSFLAGS) /r:mapscript_csharp.dll /out:shapeinfo.exe examples\shapeinfo.cs
+ $(CSC) $(CSFLAGS) /r:mapscript_csharp.dll /out:drawquery.exe examples\drawquery.cs
+ $(CSC) $(CSFLAGS) /r:mapscript_csharp.dll /r:System.Drawing.dll /out:getbytes.exe examples\getbytes.cs
+ $(CSC) $(CSFLAGS) /r:mapscript_csharp.dll /out:HTMLtemplate.exe examples\HTMLtemplate.cs
+ $(CSC) $(CSFLAGS) /r:mapscript_csharp.dll /out:RFC24.exe examples\RFC24.cs
test:
!IFDEF MONO
@@ -101,8 +102,8 @@
!ENDIF
getbytes ../../tests/test.map test_csharp2.png
!ENDIF
+ RFC24.exe ../../tests/test.map
-
clean:
del *.obj
del *.dll
More information about the mapserver-commits
mailing list