diff options
Diffstat (limited to 'vcpkg/ports/lexilla/0002-static-crt.patch')
| -rw-r--r-- | vcpkg/ports/lexilla/0002-static-crt.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/vcpkg/ports/lexilla/0002-static-crt.patch b/vcpkg/ports/lexilla/0002-static-crt.patch new file mode 100644 index 0000000..4be9f7b --- /dev/null +++ b/vcpkg/ports/lexilla/0002-static-crt.patch @@ -0,0 +1,52 @@ +diff --git a/src/Lexilla.vcxproj b/src/Lexilla.vcxproj +index 82aa9b7..6b6f340 100644 +--- a/src/Lexilla.vcxproj ++++ b/src/Lexilla.vcxproj +@@ -95,6 +95,7 @@ + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> + <ClCompile> + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> ++ <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> + </ClCompile> + <Link> + <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration> +@@ -103,6 +104,7 @@ + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> + <ClCompile> + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> ++ <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> + </ClCompile> + <Link> + <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration> +@@ -111,6 +113,7 @@ + <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> + <ClCompile> + <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> ++ <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> + </ClCompile> + <Link> + <LinkTimeCodeGeneration>Default</LinkTimeCodeGeneration> +@@ -122,6 +125,7 @@ + <FunctionLevelLinking>true</FunctionLevelLinking> + <IntrinsicFunctions>true</IntrinsicFunctions> + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> ++ <RuntimeLibrary>MultiThreaded</RuntimeLibrary> + </ClCompile> + <Link> + <EnableCOMDATFolding>true</EnableCOMDATFolding> +@@ -133,6 +137,7 @@ + <FunctionLevelLinking>true</FunctionLevelLinking> + <IntrinsicFunctions>true</IntrinsicFunctions> + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> ++ <RuntimeLibrary>MultiThreaded</RuntimeLibrary> + </ClCompile> + <Link> + <EnableCOMDATFolding>true</EnableCOMDATFolding> +@@ -144,6 +149,7 @@ + <FunctionLevelLinking>true</FunctionLevelLinking> + <IntrinsicFunctions>true</IntrinsicFunctions> + <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> ++ <RuntimeLibrary>MultiThreaded</RuntimeLibrary> + </ClCompile> + <Link> + <EnableCOMDATFolding>true</EnableCOMDATFolding> |