diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-07-09 19:56:14 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-07-09 19:56:14 +0200 |
commit | 4899df40a00ad0ba3af3e62b441ad7122bc52c71 (patch) | |
tree | 2fbbeb7e0444c0b751f275077523fdd184c70a7e | |
parent | 5e0eb693ec577213806d30527763d6b29fae33eb (diff) |
fixed Linker issue for Hunted (RuntimeLib: MT-Lib-Dbg)
-rw-r--r-- | Hunted/Hunted.vcxproj | 7 | ||||
-rw-r--r-- | MemDriverLib/MemDriverLib.vcxproj | 2 | ||||
-rw-r--r-- | MemDriverWeb/MemDriverWeb.vcxproj | 2 |
3 files changed, 10 insertions, 1 deletions
diff --git a/Hunted/Hunted.vcxproj b/Hunted/Hunted.vcxproj index ab43a13..7621221 100644 --- a/Hunted/Hunted.vcxproj +++ b/Hunted/Hunted.vcxproj @@ -98,7 +98,7 @@ <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> <ConformanceMode>true</ConformanceMode> <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> - <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> + <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> <ExceptionHandling>SyncCThrow</ExceptionHandling> <BufferSecurityCheck>true</BufferSecurityCheck> <AdditionalIncludeDirectories>$(SolutionDir)include</AdditionalIncludeDirectories> @@ -189,6 +189,11 @@ <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader> </ClCompile> </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\MemDriverLib\MemDriverLib.vcxproj"> + <Project>{b6790a97-6995-46b6-ad73-ac5bc4ac76db}</Project> + </ProjectReference> + </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> </ImportGroup> diff --git a/MemDriverLib/MemDriverLib.vcxproj b/MemDriverLib/MemDriverLib.vcxproj index 7289ecb..89afc50 100644 --- a/MemDriverLib/MemDriverLib.vcxproj +++ b/MemDriverLib/MemDriverLib.vcxproj @@ -44,6 +44,7 @@ <UseDebugLibraries>true</UseDebugLibraries> <PlatformToolset>v141</PlatformToolset> <CharacterSet>Unicode</CharacterSet> + <SpectreMitigation>false</SpectreMitigation> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <ConfigurationType>StaticLibrary</ConfigurationType> @@ -51,6 +52,7 @@ <PlatformToolset>v141</PlatformToolset> <WholeProgramOptimization>true</WholeProgramOptimization> <CharacterSet>Unicode</CharacterSet> + <SpectreMitigation>false</SpectreMitigation> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> diff --git a/MemDriverWeb/MemDriverWeb.vcxproj b/MemDriverWeb/MemDriverWeb.vcxproj index e005901..cb90dc0 100644 --- a/MemDriverWeb/MemDriverWeb.vcxproj +++ b/MemDriverWeb/MemDriverWeb.vcxproj @@ -44,6 +44,7 @@ <UseDebugLibraries>true</UseDebugLibraries> <PlatformToolset>v141</PlatformToolset> <CharacterSet>Unicode</CharacterSet> + <SpectreMitigation>false</SpectreMitigation> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> <ConfigurationType>Application</ConfigurationType> @@ -51,6 +52,7 @@ <PlatformToolset>v141</PlatformToolset> <WholeProgramOptimization>true</WholeProgramOptimization> <CharacterSet>Unicode</CharacterSet> + <SpectreMitigation>false</SpectreMitigation> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> <ImportGroup Label="ExtensionSettings"> |