[mapguide-commits] r8865 - in sandbox/jng/aspnet50/Oem/SWIGEx: . Source/Modules

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Sat Dec 12 06:54:32 PST 2015


Author: jng
Date: 2015-12-12 06:54:32 -0800 (Sat, 12 Dec 2015)
New Revision: 8865

Added:
   sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.vcxproj
Removed:
   sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.vcproj
Modified:
   sandbox/jng/aspnet50/Oem/SWIGEx/Source/Modules/csharp.cxx
   sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.sln
Log:
- Upgrade SWIG project to VS 2015
- Un-tabify csharp.cxx

Modified: sandbox/jng/aspnet50/Oem/SWIGEx/Source/Modules/csharp.cxx
===================================================================
--- sandbox/jng/aspnet50/Oem/SWIGEx/Source/Modules/csharp.cxx	2015-12-11 02:11:34 UTC (rev 8864)
+++ sandbox/jng/aspnet50/Oem/SWIGEx/Source/Modules/csharp.cxx	2015-12-12 14:54:32 UTC (rev 8865)
@@ -244,7 +244,7 @@
     variable_wrapper_flag(false),
     wrapping_member_flag(false),
     global_variable_flag(false),
-	emitExCount(0),
+    emitExCount(0),
 
     imclass_name(NULL),
     module_class_name(NULL),
@@ -346,7 +346,7 @@
                 i++;
             }
             else
-			    Swig_arg_error();
+                Swig_arg_error();
         } else if ((strcmp(argv[i],"-noproxy") == 0)) {
           Swig_mark_arg(i);
           proxy_flag = false;
@@ -460,12 +460,12 @@
     Printf(f_wrappers,"extern \"C\" {\n");
     Printf(f_wrappers,"#endif\n\n");
 
-	emitThrowFunction(f_wrappers);
+    emitThrowFunction(f_wrappers);
 
     if(getIdFilename)
-		Swig_insert_file(getIdFilename, f_wrappers);
+        Swig_insert_file(getIdFilename, f_wrappers);
     if(catchAllCodeFilename)
-		Swig_insert_file(catchAllCodeFilename, f_wrappers);
+        Swig_insert_file(catchAllCodeFilename, f_wrappers);
 
     /* Emit code */
     Language::top(n);
@@ -512,7 +512,7 @@
       // Add main polymorphism support code
       String* mapInitCode = NewString("");
       for(map<string, int>::const_iterator it = clsIds.begin(); it != clsIds.end(); it++)
-	  {
+      {
         if(namespaceName != NULL)
         {
             Printf(mapInitCode, "      classMap[%d] = Type.GetType(\"%s.%s\");\n", it->second, namespaceName, it->first.c_str());
@@ -523,7 +523,7 @@
             Printf(mapInitCode, "      classMap[%d] = Type.GetType(\"%s\");\n", it->second, it->first.c_str());
             Printf(mapInitCode, "      classNameMap[%d] = \"%s\";\n", it->second, it->first.c_str());
         }
-	  }
+      }
       char* pmapInitCode = Char(mapInitCode);
       char* pimclass_class_code = Char(imclass_class_code);
       Replaceall(imclass_class_code, "$initMap", mapInitCode);
@@ -659,54 +659,54 @@
 
   void emitCatchSequence(File* f, ExceptionClass* e)
   {
-	  if(e->derivedClasses.size() > 0)
-	  {
-		  list<ExceptionClass*>::const_iterator iter = e->derivedClasses.begin();
-		  while(iter != e->derivedClasses.end())
-		  {
-			  emitCatchSequence(f, *iter);
-			  iter++;
-		  }
-	  }
+      if(e->derivedClasses.size() > 0)
+      {
+          list<ExceptionClass*>::const_iterator iter = e->derivedClasses.begin();
+          while(iter != e->derivedClasses.end())
+          {
+              emitCatchSequence(f, *iter);
+              iter++;
+          }
+      }
 
       if(rethrowCode)
       {
-    	  Printf(f, "\tcatch(%s*)\n", e->name.c_str());
+          Printf(f, "\tcatch(%s*)\n", e->name.c_str());
       }
       else
       {
-	    if(this->emitExCount++ == 0)
-		    Printf(f, "\tif(typeid(*e) == typeid(%s))\n", e->name.c_str());
-	    else
-		    Printf(f, "\telse if(typeid(*e) == typeid(%s))\n", e->name.c_str());
+        if(this->emitExCount++ == 0)
+            Printf(f, "\tif(typeid(*e) == typeid(%s))\n", e->name.c_str());
+        else
+            Printf(f, "\telse if(typeid(*e) == typeid(%s))\n", e->name.c_str());
       }
 
-	  Printf(f, "\t{\n");
+      Printf(f, "\t{\n");
       if(namespaceName != NULL)
-	    Printf(f, "\t\texName = \"%s.%s\";\n", namespaceName, e->name.c_str());
+        Printf(f, "\t\texName = \"%s.%s\";\n", namespaceName, e->name.c_str());
       else
-	    Printf(f, "\t\texName = \"%s\";\n", e->name.c_str());
-	  Printf(f, "\t}\n");
+        Printf(f, "\t\texName = \"%s\";\n", e->name.c_str());
+      Printf(f, "\t}\n");
   }
 
   void emitBaseExceptionCatchSequence(File* f)
   {
-	  if(baseException == NULL)
-		  return;
+      if(baseException == NULL)
+          return;
 
       if(rethrowCode)
       {
-    	  Printf(f, "\tcatch(%s* e)\n", baseException);
+          Printf(f, "\tcatch(%s* e)\n", baseException);
       }
       else
       {
-	    if(this->emitExCount++ == 0)
-		    Printf(f, "\tif(typeid(*e) == typeid(%s))\n", baseException);
-	    else
-		    Printf(f, "\telse if(typeid(*e) == typeid(%s))\n", baseException);
+        if(this->emitExCount++ == 0)
+            Printf(f, "\tif(typeid(*e) == typeid(%s))\n", baseException);
+        else
+            Printf(f, "\telse if(typeid(*e) == typeid(%s))\n", baseException);
       }
 
-	  Printf(f, "\t{\n");
+      Printf(f, "\t{\n");
       Printf(f, "\t\tchar* multibyteExName = e->GetMultiByteClassName();\n");
       Printf(f, "\t\tchar* multibyteNameSpaceName = e->GetNameSpace();\n");
 
@@ -727,23 +727,23 @@
       Printf(f, "\t\t}\n");
 
       Printf(f, "\t\tif (!bFound) exNames.push_back(exName);\n");
-	  Printf(f, "\t}\n");
+      Printf(f, "\t}\n");
   }
 
-	void emitThrowFunction(File* f)
-	{
-		if(baseException == NULL)
-			return;
+    void emitThrowFunction(File* f)
+    {
+        if(baseException == NULL)
+            return;
 
-		Printf(f, "#if !defined(__GNUC__)\n");
-		Printf(f, "#pragma warning( disable: 4715)\n");
-		Printf(f, "#else\n");
-		Printf(f, "//see if GNU compiler issues a warning for function all path not returning a value, and generate the code to suppress it here\n");
-		Printf(f, "#endif\n\n");
+        Printf(f, "#if !defined(__GNUC__)\n");
+        Printf(f, "#pragma warning( disable: 4715)\n");
+        Printf(f, "#else\n");
+        Printf(f, "//see if GNU compiler issues a warning for function all path not returning a value, and generate the code to suppress it here\n");
+        Printf(f, "#endif\n\n");
 
-		Printf(f, "void ThrowDotNetExceptionWrapper(%s* e)\n{\n", baseException);
-		Printf(f, "\tstatic list<char*> exNames;\n");
-		Printf(f, "\tchar* exName = NULL;\n");
+        Printf(f, "void ThrowDotNetExceptionWrapper(%s* e)\n{\n", baseException);
+        Printf(f, "\tstatic list<char*> exNames;\n");
+        Printf(f, "\tchar* exName = NULL;\n");
         if(rethrowCode)
         {
             Printf(f, "\ttry\n\t{\n");
@@ -752,15 +752,15 @@
         }
         else
         {
-    		this->emitExCount = 0;
+            this->emitExCount = 0;
         }
         emitBaseExceptionCatchSequence(f);
 
-		Printf(f, "\tcustom_exceptions_callback(exName, e);\n");
+        Printf(f, "\tcustom_exceptions_callback(exName, e);\n");
 
-		Printf(f, "}\n");
+        Printf(f, "}\n");
 
-	}
+    }
 
     /* -----------------------------------------------------------------------------
    * emitBanner()
@@ -1029,11 +1029,11 @@
     // Now write code to make the function call
     if(!native_function_flag)
     {
-		if(!wrappingConstant && baseException)
-		{
-			//put function call withing try/catch statement
-			Printf(f->code, "try\n{\n");
-		}
+        if(!wrappingConstant && baseException)
+        {
+            //put function call withing try/catch statement
+            Printf(f->code, "try\n{\n");
+        }
         emit_action(n,f);
 
         if(!wrappingConstant && proxy_class_name && disposeCode)
@@ -1093,11 +1093,11 @@
     if(!is_void_return)
       Printv(f->code, "    return jresult;\n", NIL);
 
-	if(!wrappingConstant && !native_function_flag && baseException)
-	{
-		Printf(f->code, "}\ncatch(%s* e)\n{\nThrowDotNetExceptionWrapper(e);\n}\n", baseException);
-		Printf(f->code, "\tcatch(...) { onCatchAll(\"%s\"); }\n", overloaded_name);
-	}
+    if(!wrappingConstant && !native_function_flag && baseException)
+    {
+        Printf(f->code, "}\ncatch(%s* e)\n{\nThrowDotNetExceptionWrapper(e);\n}\n", baseException);
+        Printf(f->code, "\tcatch(...) { onCatchAll(\"%s\"); }\n", overloaded_name);
+    }
 
     Printf(f->code, "}\n");
 
@@ -1857,8 +1857,8 @@
     }
 
     bool returnObject = false;
-	int td = SwigType_type(t);
-	returnObject = (td == T_USER || td == T_POINTER);
+    int td = SwigType_type(t);
+    returnObject = (td == T_USER || td == T_POINTER);
 
     /* Attach the non-standard typemaps to the parameter list */
     Swig_typemap_attach_parms("in", l, NULL);
@@ -1971,15 +1971,15 @@
     // Transform return type used in PInvoke function (in intermediary class) to type used in C# wrapper function (in proxy class)
     if ((tm = Swig_typemap_lookup_new("csout",n,"",0))) {
       addThrows(n, "tmap:csout", n);
-	  if(returnObject)
-	  {
+      if(returnObject)
+      {
           String* createObject = NewString("");
           Printf(createObject, "($csclassname)$module.createObject($module.getClassId(cPtr), $module.getNameSpace(cPtr), $module.getClassName(cPtr), cPtr, true)");
-		  Replaceall(tm, "new $csclassname(cPtr, $owner)", createObject);
-		  Replaceall(tm, "$module", imclass_name);
+          Replaceall(tm, "new $csclassname(cPtr, $owner)", createObject);
+          Replaceall(tm, "$module", imclass_name);
 
           Delete(createObject);
-	  }
+      }
       if (Getattr(n,"feature:new"))
         Replaceall(tm,"$owner","true");
       else

Modified: sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.sln
===================================================================
--- sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.sln	2015-12-11 02:11:34 UTC (rev 8864)
+++ sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.sln	2015-12-12 14:54:32 UTC (rev 8865)
@@ -1,6 +1,8 @@
-Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual Studio 2008
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwigEx", "SwigEx.vcproj", "{18F8AE78-14F3-4C6A-9768-CF5A1A5194D7}"
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 14
+VisualStudioVersion = 14.0.24720.0
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwigEx", "SwigEx.vcxproj", "{18F8AE78-14F3-4C6A-9768-CF5A1A5194D7}"
 EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution

Deleted: sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.vcproj
===================================================================
--- sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.vcproj	2015-12-11 02:11:34 UTC (rev 8864)
+++ sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.vcproj	2015-12-12 14:54:32 UTC (rev 8865)
@@ -1,471 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="9.00"
-	Name="SwigEx"
-	ProjectGUID="{18F8AE78-14F3-4C6A-9768-CF5A1A5194D7}"
-	Keyword="Win32Proj"
-	TargetFrameworkVersion="131072"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Debug|Win32"
-			OutputDirectory="Win32"
-			IntermediateDirectory="Debug"
-			ConfigurationType="1"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				AdditionalIncludeDirectories="Source\Swig;Source\DOH;Source\Include;Source\Preprocessor;Source\Modules"
-				PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
-				MinimalRebuild="true"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="1"
-				UsePrecompiledHeader="0"
-				WarningLevel="3"
-				Detect64BitPortabilityProblems="false"
-				DebugInformationFormat="4"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				OutputFile="$(OutDir)/Swig.exe"
-				LinkIncremental="2"
-				GenerateDebugInformation="true"
-				ProgramDatabaseFile="$(OutDir)/SwigEx.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-				TargetMachine="1"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Release|Win32"
-			OutputDirectory="Win32"
-			IntermediateDirectory="Release"
-			ConfigurationType="1"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				AdditionalIncludeDirectories="Source\Swig;Source\DOH;Source\Include;Source\Preprocessor;Source\Modules"
-				PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
-				RuntimeLibrary="0"
-				UsePrecompiledHeader="0"
-				WarningLevel="3"
-				Detect64BitPortabilityProblems="false"
-				DebugInformationFormat="3"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				OutputFile="$(OutDir)/Swig.exe"
-				LinkIncremental="1"
-				GenerateDebugInformation="true"
-				SubSystem="1"
-				OptimizeReferences="2"
-				EnableCOMDATFolding="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-				TargetMachine="1"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Source Files"
-			Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
-			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
-			>
-			<Filter
-				Name="CParse"
-				>
-				<File
-					RelativePath=".\Source\CParse\cscanner.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\CParse\parser.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\CParse\templ.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\CParse\util.c"
-					>
-				</File>
-			</Filter>
-			<Filter
-				Name="DOH"
-				>
-				<File
-					RelativePath=".\Source\Doh\base.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Doh\doh.h"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Doh\dohint.h"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Doh\file.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Doh\fio.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Doh\hash.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Doh\list.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Doh\memory.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Doh\string.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Doh\void.c"
-					>
-				</File>
-			</Filter>
-			<Filter
-				Name="Swig"
-				>
-				<File
-					RelativePath=".\Source\Swig\cwrap.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\error.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\fragment.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\getopt.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\include.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\misc.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\naming.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\parms.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\scanner.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\stype.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\swig.h"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\symbol.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\tree.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\typemap.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\typeobj.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\typesys.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\warn.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Swig\wrapfunc.c"
-					>
-				</File>
-			</Filter>
-			<Filter
-				Name="Modules"
-				>
-				<File
-					RelativePath=".\Source\Modules\allocate.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\browser.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\chicken.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\contract.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\csharp.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\directors.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\emit.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\ExceptionClass.h"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\guile.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\java.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\lang.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\main.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\module.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\mzscheme.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\ocaml.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\overload.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\perl5.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\php4.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\php5.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\pike.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\python.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\ruby.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\s-exp.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\swigmain.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\tcl8.cxx"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							GeneratePreprocessedFile="0"
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\typepass.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\utils.cxx"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Modules\xml.cxx"
-					>
-				</File>
-			</Filter>
-			<Filter
-				Name="Preprocessor"
-				>
-				<File
-					RelativePath=".\Source\Preprocessor\cpp.c"
-					>
-				</File>
-				<File
-					RelativePath=".\Source\Preprocessor\expr.c"
-					>
-				</File>
-			</Filter>
-		</Filter>
-		<Filter
-			Name="Header Files"
-			Filter="h;hpp;hxx;hm;inl;inc;xsd"
-			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
-			>
-		</Filter>
-		<Filter
-			Name="Resource Files"
-			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
-			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
-			>
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>

Added: sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.vcxproj
===================================================================
--- sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.vcxproj	                        (rev 0)
+++ sandbox/jng/aspnet50/Oem/SWIGEx/SwigEx.vcxproj	2015-12-12 14:54:32 UTC (rev 8865)
@@ -0,0 +1,171 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <ItemGroup Label="ProjectConfigurations">
+    <ProjectConfiguration Include="Debug|Win32">
+      <Configuration>Debug</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+    <ProjectConfiguration Include="Release|Win32">
+      <Configuration>Release</Configuration>
+      <Platform>Win32</Platform>
+    </ProjectConfiguration>
+  </ItemGroup>
+  <PropertyGroup Label="Globals">
+    <ProjectGuid>{18F8AE78-14F3-4C6A-9768-CF5A1A5194D7}</ProjectGuid>
+    <Keyword>Win32Proj</Keyword>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+    <ConfigurationType>Application</ConfigurationType>
+    <PlatformToolset>v140</PlatformToolset>
+    <CharacterSet>MultiByte</CharacterSet>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+    <ConfigurationType>Application</ConfigurationType>
+    <PlatformToolset>v140</PlatformToolset>
+    <CharacterSet>MultiByte</CharacterSet>
+  </PropertyGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+  <ImportGroup Label="ExtensionSettings">
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
+    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+  </ImportGroup>
+  <PropertyGroup Label="UserMacros" />
+  <PropertyGroup>
+    <_ProjectFileVersion>14.0.24720.0</_ProjectFileVersion>
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <OutDir>Win32\</OutDir>
+    <IntDir>Debug\</IntDir>
+    <LinkIncremental>true</LinkIncremental>
+    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
+    <CodeAnalysisRules />
+    <CodeAnalysisRuleAssemblies />
+  </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <OutDir>Win32\</OutDir>
+    <IntDir>Release\</IntDir>
+    <LinkIncremental>false</LinkIncremental>
+    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
+    <CodeAnalysisRules />
+    <CodeAnalysisRuleAssemblies />
+  </PropertyGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+    <ClCompile>
+      <Optimization>Disabled</Optimization>
+      <AdditionalIncludeDirectories>Source\Swig;Source\DOH;Source\Include;Source\Preprocessor;Source\Modules;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <MinimalRebuild>true</MinimalRebuild>
+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
+      <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
+      <PrecompiledHeader />
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>EditAndContinue</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      <OutputFile>$(OutDir)Swig.exe</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <ProgramDatabaseFile>$(OutDir)SwigEx.pdb</ProgramDatabaseFile>
+      <SubSystem>Console</SubSystem>
+      <RandomizedBaseAddress>false</RandomizedBaseAddress>
+      <DataExecutionPrevention />
+      <TargetMachine>MachineX86</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+    <ClCompile>
+      <AdditionalIncludeDirectories>Source\Swig;Source\DOH;Source\Include;Source\Preprocessor;Source\Modules;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+      <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
+      <PrecompiledHeader />
+      <WarningLevel>Level3</WarningLevel>
+      <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+    </ClCompile>
+    <Link>
+      <OutputFile>$(OutDir)Swig.exe</OutputFile>
+      <GenerateDebugInformation>true</GenerateDebugInformation>
+      <SubSystem>Console</SubSystem>
+      <OptimizeReferences>true</OptimizeReferences>
+      <EnableCOMDATFolding>true</EnableCOMDATFolding>
+      <RandomizedBaseAddress>false</RandomizedBaseAddress>
+      <DataExecutionPrevention />
+      <TargetMachine>MachineX86</TargetMachine>
+    </Link>
+  </ItemDefinitionGroup>
+  <ItemGroup>
+    <ClCompile Include="Source\CParse\cscanner.c" />
+    <ClCompile Include="Source\CParse\parser.c" />
+    <ClCompile Include="Source\CParse\templ.c" />
+    <ClCompile Include="Source\CParse\util.c" />
+    <ClCompile Include="Source\Doh\base.c" />
+    <ClCompile Include="Source\Doh\file.c" />
+    <ClCompile Include="Source\Doh\fio.c" />
+    <ClCompile Include="Source\Doh\hash.c" />
+    <ClCompile Include="Source\Doh\list.c" />
+    <ClCompile Include="Source\Doh\memory.c" />
+    <ClCompile Include="Source\Doh\string.c" />
+    <ClCompile Include="Source\Doh\void.c" />
+    <ClCompile Include="Source\Modules\allocate.cxx" />
+    <ClCompile Include="Source\Modules\browser.cxx" />
+    <ClCompile Include="Source\Modules\chicken.cxx" />
+    <ClCompile Include="Source\Modules\contract.cxx" />
+    <ClCompile Include="Source\Modules\csharp.cxx" />
+    <ClCompile Include="Source\Modules\directors.cxx" />
+    <ClCompile Include="Source\Modules\emit.cxx" />
+    <ClCompile Include="Source\Modules\guile.cxx" />
+    <ClCompile Include="Source\Modules\java.cxx" />
+    <ClCompile Include="Source\Modules\lang.cxx" />
+    <ClCompile Include="Source\Modules\main.cxx" />
+    <ClCompile Include="Source\Modules\module.cxx" />
+    <ClCompile Include="Source\Modules\mzscheme.cxx" />
+    <ClCompile Include="Source\Modules\ocaml.cxx" />
+    <ClCompile Include="Source\Modules\overload.cxx" />
+    <ClCompile Include="Source\Modules\perl5.cxx" />
+    <ClCompile Include="Source\Modules\php4.cxx" />
+    <ClCompile Include="Source\Modules\php5.cxx" />
+    <ClCompile Include="Source\Modules\pike.cxx" />
+    <ClCompile Include="Source\Modules\python.cxx" />
+    <ClCompile Include="Source\Modules\ruby.cxx" />
+    <ClCompile Include="Source\Modules\s-exp.cxx" />
+    <ClCompile Include="Source\Modules\swigmain.cxx" />
+    <ClCompile Include="Source\Modules\tcl8.cxx">
+      <PreprocessToFile Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</PreprocessToFile>
+      <PreprocessSuppressLineNumbers Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">false</PreprocessSuppressLineNumbers>
+    </ClCompile>
+    <ClCompile Include="Source\Modules\typepass.cxx" />
+    <ClCompile Include="Source\Modules\utils.cxx" />
+    <ClCompile Include="Source\Modules\xml.cxx" />
+    <ClCompile Include="Source\Preprocessor\cpp.c" />
+    <ClCompile Include="Source\Preprocessor\expr.c" />
+    <ClCompile Include="Source\Swig\cwrap.c" />
+    <ClCompile Include="Source\Swig\error.c" />
+    <ClCompile Include="Source\Swig\fragment.c" />
+    <ClCompile Include="Source\Swig\getopt.c" />
+    <ClCompile Include="Source\Swig\include.c" />
+    <ClCompile Include="Source\Swig\misc.c" />
+    <ClCompile Include="Source\Swig\naming.c" />
+    <ClCompile Include="Source\Swig\parms.c" />
+    <ClCompile Include="Source\Swig\scanner.c" />
+    <ClCompile Include="Source\Swig\stype.c" />
+    <ClCompile Include="Source\Swig\symbol.c" />
+    <ClCompile Include="Source\Swig\tree.c" />
+    <ClCompile Include="Source\Swig\typemap.c" />
+    <ClCompile Include="Source\Swig\typeobj.c" />
+    <ClCompile Include="Source\Swig\typesys.c" />
+    <ClCompile Include="Source\Swig\warn.c" />
+    <ClCompile Include="Source\Swig\wrapfunc.c" />
+  </ItemGroup>
+  <ItemGroup>
+    <ClInclude Include="Source\Doh\doh.h" />
+    <ClInclude Include="Source\Doh\dohint.h" />
+    <ClInclude Include="Source\Modules\ExceptionClass.h" />
+    <ClInclude Include="Source\Swig\swig.h" />
+  </ItemGroup>
+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+  <ImportGroup Label="ExtensionTargets">
+  </ImportGroup>
+</Project>
\ No newline at end of file



More information about the mapguide-commits mailing list