Skip to content

Commit

Permalink
x86 platform for Visual Studio 2012 project + enabled multiprocessor …
Browse files Browse the repository at this point in the history
…compilation
  • Loading branch information
WheretIB committed Mar 18, 2019
1 parent 6654163 commit 31d2083
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 70 deletions.
9 changes: 6 additions & 3 deletions NULLC/NULLC_110.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,8 @@
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
<AdditionalIncludeDirectories>D:\dev\llvm-3.1\install_actual\include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<ExceptionHandling>
</ExceptionHandling>
<BasicRuntimeChecks>UninitializedLocalUsageCheck</BasicRuntimeChecks>
Expand All @@ -103,6 +102,7 @@
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<CompileAs>CompileAsCpp</CompileAs>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Lib>
<OutputFile>$(TargetPath)</OutputFile>
Expand All @@ -126,6 +126,7 @@
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CompileAs>CompileAsCpp</CompileAs>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Lib>
<OutputFile>$(TargetPath)</OutputFile>
Expand All @@ -138,7 +139,7 @@
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<IntrinsicFunctions>true</IntrinsicFunctions>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<AdditionalIncludeDirectories>D:\dev\llvm-3.1\install_actual\include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ExceptionHandling>
</ExceptionHandling>
Expand All @@ -153,6 +154,7 @@
</AssemblerListingLocation>
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Lib>
<OutputFile>$(TargetPath)</OutputFile>
Expand Down Expand Up @@ -180,6 +182,7 @@
</AssemblerListingLocation>
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Lib>
<OutputFile>$(TargetPath)</OutputFile>
Expand Down
9 changes: 6 additions & 3 deletions NULLC/NULLC_cl_110.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,8 @@
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<Optimization>Disabled</Optimization>
<AdditionalIncludeDirectories>D:\dev\llvm-3.1\install_actual\include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;NULLC_NO_EXECUTOR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<ExceptionHandling>
</ExceptionHandling>
<BasicRuntimeChecks>UninitializedLocalUsageCheck</BasicRuntimeChecks>
Expand All @@ -102,6 +101,7 @@
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<CompileAs>CompileAsCpp</CompileAs>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Lib>
<OutputFile>$(TargetPath)</OutputFile>
Expand All @@ -125,6 +125,7 @@
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CompileAs>CompileAsCpp</CompileAs>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Lib>
<OutputFile>$(TargetPath)</OutputFile>
Expand All @@ -137,7 +138,7 @@
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<IntrinsicFunctions>true</IntrinsicFunctions>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<AdditionalIncludeDirectories>D:\dev\llvm-3.1\install_actual\include\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;NULLC_NO_EXECUTOR;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ExceptionHandling>
</ExceptionHandling>
Expand All @@ -152,6 +153,7 @@
</AssemblerListingLocation>
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Lib>
<OutputFile>$(TargetPath)</OutputFile>
Expand Down Expand Up @@ -179,6 +181,7 @@
</AssemblerListingLocation>
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Lib>
<OutputFile>$(TargetPath)</OutputFile>
Expand Down
78 changes: 26 additions & 52 deletions nullc_110.sln
Original file line number Diff line number Diff line change
Expand Up @@ -17,86 +17,60 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestRun", "tests\TestRun_11
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release|Mixed Platforms = Release|Mixed Platforms
Release|Win32 = Release|Win32
Debug|x86 = Debug|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Debug|Mixed Platforms.Build.0 = Debug|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Debug|Win32.ActiveCfg = Debug|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Debug|Win32.Build.0 = Debug|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Debug|x64.ActiveCfg = Debug|x64
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Debug|x64.Build.0 = Debug|x64
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Release|Mixed Platforms.ActiveCfg = Release|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Release|Mixed Platforms.Build.0 = Release|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Release|Win32.ActiveCfg = Release|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Release|Win32.Build.0 = Release|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Debug|x86.ActiveCfg = Debug|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Debug|x86.Build.0 = Debug|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Release|x64.ActiveCfg = Release|x64
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Release|x64.Build.0 = Release|x64
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Debug|Mixed Platforms.Build.0 = Debug|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Debug|Win32.ActiveCfg = Debug|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Debug|Win32.Build.0 = Debug|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Release|x86.ActiveCfg = Release|Win32
{6A799BF2-225C-4CBB-A084-179CF87D019E}.Release|x86.Build.0 = Release|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Debug|x64.ActiveCfg = Debug|x64
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Debug|x64.Build.0 = Debug|x64
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Release|Mixed Platforms.ActiveCfg = Release|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Release|Mixed Platforms.Build.0 = Release|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Release|Win32.ActiveCfg = Release|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Release|Win32.Build.0 = Release|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Debug|x86.ActiveCfg = Debug|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Debug|x86.Build.0 = Debug|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Release|x64.ActiveCfg = Release|x64
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Release|x64.Build.0 = Release|x64
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Debug|Mixed Platforms.Build.0 = Debug|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Debug|Win32.ActiveCfg = Debug|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Debug|Win32.Build.0 = Debug|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Release|x86.ActiveCfg = Release|Win32
{5914662D-EBDB-4F94-8A1C-BC26E3E8B8C7}.Release|x86.Build.0 = Release|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Debug|x64.ActiveCfg = Debug|x64
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Debug|x64.Build.0 = Debug|x64
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Release|Mixed Platforms.ActiveCfg = Release|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Release|Mixed Platforms.Build.0 = Release|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Release|Win32.ActiveCfg = Release|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Release|Win32.Build.0 = Release|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Debug|x86.ActiveCfg = Debug|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Debug|x86.Build.0 = Debug|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Release|x64.ActiveCfg = Release|x64
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Release|x64.Build.0 = Release|x64
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Debug|Mixed Platforms.Build.0 = Debug|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Debug|Win32.ActiveCfg = Debug|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Debug|Win32.Build.0 = Debug|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Release|x86.ActiveCfg = Release|Win32
{F78BDC16-AFB3-4BCD-BE3D-96F1CB6B16ED}.Release|x86.Build.0 = Release|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Debug|x64.ActiveCfg = Debug|x64
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Debug|x64.Build.0 = Debug|x64
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Release|Mixed Platforms.ActiveCfg = Release|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Release|Mixed Platforms.Build.0 = Release|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Release|Win32.ActiveCfg = Release|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Release|Win32.Build.0 = Release|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Debug|x86.ActiveCfg = Debug|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Debug|x86.Build.0 = Debug|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Release|x64.ActiveCfg = Release|x64
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Release|x64.Build.0 = Release|x64
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Debug|Mixed Platforms.Build.0 = Debug|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Debug|Win32.ActiveCfg = Debug|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Debug|Win32.Build.0 = Debug|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Release|x86.ActiveCfg = Release|Win32
{42BD8BD8-0320-4B39-902B-25F8CAC6446E}.Release|x86.Build.0 = Release|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Debug|x64.ActiveCfg = Debug|x64
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Debug|x64.Build.0 = Debug|x64
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Release|Mixed Platforms.ActiveCfg = Release|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Release|Mixed Platforms.Build.0 = Release|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Release|Win32.ActiveCfg = Release|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Release|Win32.Build.0 = Release|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Debug|x86.ActiveCfg = Debug|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Debug|x86.Build.0 = Debug|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Release|x64.ActiveCfg = Release|x64
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Release|x64.Build.0 = Release|x64
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Debug|Mixed Platforms.Build.0 = Debug|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Debug|Win32.ActiveCfg = Debug|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Debug|Win32.Build.0 = Debug|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Release|x86.ActiveCfg = Release|Win32
{536F47BB-3BF0-45E9-A174-332A43B511D9}.Release|x86.Build.0 = Release|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Debug|x64.ActiveCfg = Debug|x64
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Debug|x64.Build.0 = Debug|x64
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Release|Mixed Platforms.ActiveCfg = Release|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Release|Mixed Platforms.Build.0 = Release|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Release|Win32.ActiveCfg = Release|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Release|Win32.Build.0 = Release|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Debug|x86.ActiveCfg = Debug|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Debug|x86.Build.0 = Debug|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Release|x64.ActiveCfg = Release|x64
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Release|x64.Build.0 = Release|x64
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Release|x86.ActiveCfg = Release|Win32
{4D348B52-3F9B-436A-B066-8A1A633B9562}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
14 changes: 2 additions & 12 deletions nullc_ide/nullc_ide_110.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -95,32 +95,27 @@
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<ExceptionHandling>
</ExceptionHandling>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<BasicRuntimeChecks>UninitializedLocalUsageCheck</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<ShowIncludes>false</ShowIncludes>
<MultiProcessorCompilation>false</MultiProcessorCompilation>
</ClCompile>
<Link>
<OutputFile>$(TargetPath)</OutputFile>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<GenerateDebugInformation>true</GenerateDebugInformation>
<ProgramDatabaseFile>$(OutDir)nullc_ide.pdb</ProgramDatabaseFile>
<SubSystem>Windows</SubSystem>
<RandomizedBaseAddress>false</RandomizedBaseAddress>
<FixedBaseAddress>false</FixedBaseAddress>
<DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX86</TargetMachine>
<AdditionalLibraryDirectories>D:\dev\llvm-3.1\install_actual\lib</AdditionalLibraryDirectories>
<ImageHasSafeExceptionHandlers />
</Link>
</ItemDefinitionGroup>
Expand All @@ -130,16 +125,14 @@
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ExceptionHandling>
</ExceptionHandling>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<BasicRuntimeChecks>UninitializedLocalUsageCheck</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level4</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<ShowIncludes>false</ShowIncludes>
<MultiProcessorCompilation>false</MultiProcessorCompilation>
</ClCompile>
<Link>
<OutputFile>$(TargetPath)</OutputFile>
Expand All @@ -163,7 +156,6 @@
<ExceptionHandling>
</ExceptionHandling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<PrecompiledHeader>
</PrecompiledHeader>
Expand All @@ -185,7 +177,6 @@
<DataExecutionPrevention>
</DataExecutionPrevention>
<TargetMachine>MachineX86</TargetMachine>
<AdditionalLibraryDirectories>D:\dev\llvm-3.1\install_actual\lib</AdditionalLibraryDirectories>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
Expand All @@ -198,7 +189,6 @@
<ExceptionHandling>
</ExceptionHandling>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<ForceConformanceInForLoopScope>true</ForceConformanceInForLoopScope>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<PrecompiledHeader>
</PrecompiledHeader>
Expand Down
6 changes: 6 additions & 0 deletions tests/TestRun_110.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@
<SDLCheck>
</SDLCheck>
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<MinimalRebuild>false</MinimalRebuild>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
Expand All @@ -110,6 +112,8 @@
<SDLCheck>
</SDLCheck>
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<MinimalRebuild>false</MinimalRebuild>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
Expand All @@ -128,6 +132,7 @@
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
Expand All @@ -148,6 +153,7 @@
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<DisableSpecificWarnings>4996</DisableSpecificWarnings>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
Expand Down

0 comments on commit 31d2083

Please sign in to comment.