Skip to content

Commit 3757792

Browse files
committed
updated MSVC projects for several submodules: augmented the update tool script to better ensure that each project has its OutDir and IntDir path set to a sensible value and does not create hash-based weird-named directories at will inside the /platform/win32/ base directory.
1 parent e72fac1 commit 3757792

File tree

159 files changed

+3932
-1510
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+3932
-1510
lines changed

.gitmodules

+6
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,13 @@
8080
[submodule "thirdparty/tessdata_fast"]
8181
path = thirdparty/tessdata_fast
8282
url = [email protected]:GerHobbelt/tessdata_fast.git
83+
fetchRecurseSubmodules = on-demand
84+
ignore = dirty
8385
[submodule "thirdparty/tessdata_best"]
8486
path = thirdparty/tessdata_best
8587
url = [email protected]:GerHobbelt/tessdata_best.git
88+
fetchRecurseSubmodules = on-demand
89+
ignore = dirty
8690
[submodule "thirdparty/tesseract_langdata"]
8791
path = thirdparty/tesseract_langdata
8892
url = [email protected]:GerHobbelt/langdata.git
@@ -96,6 +100,8 @@
96100
[submodule "thirdparty/tessdata"]
97101
path = thirdparty/tessdata
98102
url = [email protected]:GerHobbelt/tessdata.git
103+
fetchRecurseSubmodules = on-demand
104+
ignore = dirty
99105
[submodule "thirdparty/owemdjee"]
100106
path = thirdparty/owemdjee
101107
url = [email protected]:GerHobbelt/owemdjee.git

platform/win32/1D-RGB-color-gradient.vcxproj

+27-14
Original file line numberDiff line numberDiff line change
@@ -50,51 +50,63 @@
5050
<CharacterSet>Unicode</CharacterSet>
5151
</PropertyGroup>
5252
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
53-
<ImportGroup Label="PropertySheets">
53+
<ImportGroup Label="PropertySheets" >
5454
<Import Project="$(SolutionDir)\common-project.props" Label="SolutionWideSettings" />
5555
</ImportGroup>
5656
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
57-
<Import Project="$(SolutionDir)\common-project-Debug-Win32.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win32.props')" Label="SolutionWideDebugWin32Settings" />
57+
<Import Project="$(SolutionDir)\common-project-Debug-Win32.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win32.props')" Label="SolutionWideDebugWin32Settings" />
5858
</ImportGroup>
5959
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
60-
<Import Project="$(SolutionDir)\common-project-Release-Win32.props" Condition="exists('$(SolutionDir)\common-project-Release-Win32.props')" Label="SolutionWideReleaseWin32Settings" />
60+
<Import Project="$(SolutionDir)\common-project-Release-Win32.props" Condition="exists('$(SolutionDir)\common-project-Release-Win32.props')" Label="SolutionWideReleaseWin32Settings" />
6161
</ImportGroup>
6262
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
63-
<Import Project="$(SolutionDir)\common-project-Debug-Win64.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win64.props')" Label="SolutionWideDebugWin64Settings" />
63+
<Import Project="$(SolutionDir)\common-project-Debug-Win64.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win64.props')" Label="SolutionWideDebugWin64Settings" />
6464
</ImportGroup>
6565
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
66-
<Import Project="$(SolutionDir)\common-project-Release-Win64.props" Condition="exists('$(SolutionDir)\common-project-Release-Win64.props')" Label="SolutionWideReleaseWin64Settings" />
66+
<Import Project="$(SolutionDir)\common-project-Release-Win64.props" Condition="exists('$(SolutionDir)\common-project-Release-Win64.props')" Label="SolutionWideReleaseWin64Settings" />
6767
</ImportGroup>
6868
<ImportGroup Label="ExtensionSettings">
6969
</ImportGroup>
7070
<ImportGroup Label="Shared">
7171
</ImportGroup>
7272
<PropertyGroup Label="UserMacros" />
7373
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
74-
<NMakeOutput>collection-1.exe</NMakeOutput>
74+
<NMakeOutput></NMakeOutput>
7575
<NMakePreprocessorDefinitions>NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
7676
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
7777
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
78+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
79+
<WholeProgramOptimization>true</WholeProgramOptimization>
80+
<LinkIncremental>false</LinkIncremental>
7881
</PropertyGroup>
7982
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
80-
<NMakeOutput>collection-1.exe</NMakeOutput>
83+
<NMakeOutput></NMakeOutput>
8184
<NMakePreprocessorDefinitions>WIN32;_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
8285
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
8386
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
87+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
88+
<WholeProgramOptimization>true</WholeProgramOptimization>
89+
<LinkIncremental>false</LinkIncremental>
8490
</PropertyGroup>
8591
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
86-
<NMakeOutput>collection-1.exe</NMakeOutput>
92+
<NMakeOutput></NMakeOutput>
8793
<NMakePreprocessorDefinitions>_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
8894
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
8995
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
96+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
97+
<WholeProgramOptimization>true</WholeProgramOptimization>
98+
<LinkIncremental>false</LinkIncremental>
9099
</PropertyGroup>
91100
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
92-
<NMakeOutput>collection-1.exe</NMakeOutput>
101+
<NMakeOutput></NMakeOutput>
93102
<NMakePreprocessorDefinitions>WIN32;NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
94103
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
95104
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
105+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
106+
<WholeProgramOptimization>true</WholeProgramOptimization>
107+
<LinkIncremental>false</LinkIncremental>
96108
</PropertyGroup>
97-
<ItemDefinitionGroup>
109+
<ItemDefinitionGroup>
98110
<ClCompile>
99111
<Optimization>Custom</Optimization>
100112
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
@@ -128,8 +140,8 @@
128140
<RuntimeTypeInfo>true</RuntimeTypeInfo>
129141
<AdditionalOptions>/bigobj /utf-8 /Zc:__cplusplus /Zc:preprocessor %(AdditionalOptions)</AdditionalOptions>
130142
</ClCompile>
131-
</ItemDefinitionGroup>
132-
<ItemDefinitionGroup>
143+
</ItemDefinitionGroup>
144+
<ItemDefinitionGroup>
133145
</ItemDefinitionGroup>
134146
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
135147
<ImportGroup Label="ExtensionTargets" />
@@ -349,7 +361,8 @@
349361
<Text Include="../../thirdparty/owemdjee/1D-RGB-color-gradient/src/g.sh" />
350362
<Text Include="../../thirdparty/owemdjee/1D-RGB-color-gradient/src/simplest_regression.py" />
351363
</ItemGroup>
352-
<ImportGroup Label="PropertySheets">
364+
<ImportGroup Label="PropertySheets" >
353365
<Import Project="$(SolutionDir)\common-project-ultimate-override.props" Label="SolutionWideSettingsOverride" />
354366
</ImportGroup>
355-
</Project>
367+
</Project>
368+

platform/win32/2D-color-gradient-or-Procedural-texture.vcxproj

+27-14
Original file line numberDiff line numberDiff line change
@@ -50,51 +50,63 @@
5050
<CharacterSet>Unicode</CharacterSet>
5151
</PropertyGroup>
5252
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
53-
<ImportGroup Label="PropertySheets">
53+
<ImportGroup Label="PropertySheets" >
5454
<Import Project="$(SolutionDir)\common-project.props" Label="SolutionWideSettings" />
5555
</ImportGroup>
5656
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
57-
<Import Project="$(SolutionDir)\common-project-Debug-Win32.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win32.props')" Label="SolutionWideDebugWin32Settings" />
57+
<Import Project="$(SolutionDir)\common-project-Debug-Win32.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win32.props')" Label="SolutionWideDebugWin32Settings" />
5858
</ImportGroup>
5959
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
60-
<Import Project="$(SolutionDir)\common-project-Release-Win32.props" Condition="exists('$(SolutionDir)\common-project-Release-Win32.props')" Label="SolutionWideReleaseWin32Settings" />
60+
<Import Project="$(SolutionDir)\common-project-Release-Win32.props" Condition="exists('$(SolutionDir)\common-project-Release-Win32.props')" Label="SolutionWideReleaseWin32Settings" />
6161
</ImportGroup>
6262
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
63-
<Import Project="$(SolutionDir)\common-project-Debug-Win64.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win64.props')" Label="SolutionWideDebugWin64Settings" />
63+
<Import Project="$(SolutionDir)\common-project-Debug-Win64.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win64.props')" Label="SolutionWideDebugWin64Settings" />
6464
</ImportGroup>
6565
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
66-
<Import Project="$(SolutionDir)\common-project-Release-Win64.props" Condition="exists('$(SolutionDir)\common-project-Release-Win64.props')" Label="SolutionWideReleaseWin64Settings" />
66+
<Import Project="$(SolutionDir)\common-project-Release-Win64.props" Condition="exists('$(SolutionDir)\common-project-Release-Win64.props')" Label="SolutionWideReleaseWin64Settings" />
6767
</ImportGroup>
6868
<ImportGroup Label="ExtensionSettings">
6969
</ImportGroup>
7070
<ImportGroup Label="Shared">
7171
</ImportGroup>
7272
<PropertyGroup Label="UserMacros" />
7373
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
74-
<NMakeOutput>collection-1.exe</NMakeOutput>
74+
<NMakeOutput></NMakeOutput>
7575
<NMakePreprocessorDefinitions>NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
7676
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
7777
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
78+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
79+
<WholeProgramOptimization>true</WholeProgramOptimization>
80+
<LinkIncremental>false</LinkIncremental>
7881
</PropertyGroup>
7982
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
80-
<NMakeOutput>collection-1.exe</NMakeOutput>
83+
<NMakeOutput></NMakeOutput>
8184
<NMakePreprocessorDefinitions>WIN32;_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
8285
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
8386
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
87+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
88+
<WholeProgramOptimization>true</WholeProgramOptimization>
89+
<LinkIncremental>false</LinkIncremental>
8490
</PropertyGroup>
8591
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
86-
<NMakeOutput>collection-1.exe</NMakeOutput>
92+
<NMakeOutput></NMakeOutput>
8793
<NMakePreprocessorDefinitions>_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
8894
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
8995
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
96+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
97+
<WholeProgramOptimization>true</WholeProgramOptimization>
98+
<LinkIncremental>false</LinkIncremental>
9099
</PropertyGroup>
91100
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
92-
<NMakeOutput>collection-1.exe</NMakeOutput>
101+
<NMakeOutput></NMakeOutput>
93102
<NMakePreprocessorDefinitions>WIN32;NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
94103
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
95104
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
105+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
106+
<WholeProgramOptimization>true</WholeProgramOptimization>
107+
<LinkIncremental>false</LinkIncremental>
96108
</PropertyGroup>
97-
<ItemDefinitionGroup>
109+
<ItemDefinitionGroup>
98110
<ClCompile>
99111
<Optimization>Custom</Optimization>
100112
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
@@ -128,8 +140,8 @@
128140
<RuntimeTypeInfo>true</RuntimeTypeInfo>
129141
<AdditionalOptions>/bigobj /utf-8 /Zc:__cplusplus /Zc:preprocessor %(AdditionalOptions)</AdditionalOptions>
130142
</ClCompile>
131-
</ItemDefinitionGroup>
132-
<ItemDefinitionGroup>
143+
</ItemDefinitionGroup>
144+
<ItemDefinitionGroup>
133145
</ItemDefinitionGroup>
134146
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
135147
<ImportGroup Label="ExtensionTargets" />
@@ -210,7 +222,8 @@
210222
<Text Include="../../thirdparty/owemdjee/2D-color-gradient-or-Procedural-texture/src/pas/bmpM.pas" />
211223
<Text Include="../../thirdparty/owemdjee/2D-color-gradient-or-Procedural-texture/src/pas/mainM.pas" />
212224
</ItemGroup>
213-
<ImportGroup Label="PropertySheets">
225+
<ImportGroup Label="PropertySheets" >
214226
<Import Project="$(SolutionDir)\common-project-ultimate-override.props" Label="SolutionWideSettingsOverride" />
215227
</ImportGroup>
216-
</Project>
228+
</Project>
229+

platform/win32/Awesome-Document-Image-Rectification.vcxproj

+27-14
Original file line numberDiff line numberDiff line change
@@ -50,51 +50,63 @@
5050
<CharacterSet>Unicode</CharacterSet>
5151
</PropertyGroup>
5252
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
53-
<ImportGroup Label="PropertySheets">
53+
<ImportGroup Label="PropertySheets" >
5454
<Import Project="$(SolutionDir)\common-project.props" Label="SolutionWideSettings" />
5555
</ImportGroup>
5656
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
57-
<Import Project="$(SolutionDir)\common-project-Debug-Win32.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win32.props')" Label="SolutionWideDebugWin32Settings" />
57+
<Import Project="$(SolutionDir)\common-project-Debug-Win32.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win32.props')" Label="SolutionWideDebugWin32Settings" />
5858
</ImportGroup>
5959
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
60-
<Import Project="$(SolutionDir)\common-project-Release-Win32.props" Condition="exists('$(SolutionDir)\common-project-Release-Win32.props')" Label="SolutionWideReleaseWin32Settings" />
60+
<Import Project="$(SolutionDir)\common-project-Release-Win32.props" Condition="exists('$(SolutionDir)\common-project-Release-Win32.props')" Label="SolutionWideReleaseWin32Settings" />
6161
</ImportGroup>
6262
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
63-
<Import Project="$(SolutionDir)\common-project-Debug-Win64.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win64.props')" Label="SolutionWideDebugWin64Settings" />
63+
<Import Project="$(SolutionDir)\common-project-Debug-Win64.props" Condition="exists('$(SolutionDir)\common-project-Debug-Win64.props')" Label="SolutionWideDebugWin64Settings" />
6464
</ImportGroup>
6565
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
66-
<Import Project="$(SolutionDir)\common-project-Release-Win64.props" Condition="exists('$(SolutionDir)\common-project-Release-Win64.props')" Label="SolutionWideReleaseWin64Settings" />
66+
<Import Project="$(SolutionDir)\common-project-Release-Win64.props" Condition="exists('$(SolutionDir)\common-project-Release-Win64.props')" Label="SolutionWideReleaseWin64Settings" />
6767
</ImportGroup>
6868
<ImportGroup Label="ExtensionSettings">
6969
</ImportGroup>
7070
<ImportGroup Label="Shared">
7171
</ImportGroup>
7272
<PropertyGroup Label="UserMacros" />
7373
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
74-
<NMakeOutput>collection-1.exe</NMakeOutput>
74+
<NMakeOutput></NMakeOutput>
7575
<NMakePreprocessorDefinitions>NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
7676
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
7777
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
78+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
79+
<WholeProgramOptimization>true</WholeProgramOptimization>
80+
<LinkIncremental>false</LinkIncremental>
7881
</PropertyGroup>
7982
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
80-
<NMakeOutput>collection-1.exe</NMakeOutput>
83+
<NMakeOutput></NMakeOutput>
8184
<NMakePreprocessorDefinitions>WIN32;_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
8285
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
8386
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
87+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
88+
<WholeProgramOptimization>true</WholeProgramOptimization>
89+
<LinkIncremental>false</LinkIncremental>
8490
</PropertyGroup>
8591
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
86-
<NMakeOutput>collection-1.exe</NMakeOutput>
92+
<NMakeOutput></NMakeOutput>
8793
<NMakePreprocessorDefinitions>_DEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
8894
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
8995
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
96+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
97+
<WholeProgramOptimization>true</WholeProgramOptimization>
98+
<LinkIncremental>false</LinkIncremental>
9099
</PropertyGroup>
91100
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
92-
<NMakeOutput>collection-1.exe</NMakeOutput>
101+
<NMakeOutput></NMakeOutput>
93102
<NMakePreprocessorDefinitions>WIN32;NDEBUG;$(NMakePreprocessorDefinitions)</NMakePreprocessorDefinitions>
94103
<OutDir>$(SolutionDir)bin\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\</OutDir>
95104
<IntDir>$(SolutionDir)obj\$(Configuration)-$(CharacterSet)-$(PlatformArchitecture)bit-$(PlatformShortname)\$(ConfigurationType)-$(ProjectName)\</IntDir>
105+
<CopyLocalDeploymentContent>true</CopyLocalDeploymentContent>
106+
<WholeProgramOptimization>true</WholeProgramOptimization>
107+
<LinkIncremental>false</LinkIncremental>
96108
</PropertyGroup>
97-
<ItemDefinitionGroup>
109+
<ItemDefinitionGroup>
98110
<ClCompile>
99111
<Optimization>Custom</Optimization>
100112
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
@@ -128,15 +140,16 @@
128140
<RuntimeTypeInfo>true</RuntimeTypeInfo>
129141
<AdditionalOptions>/bigobj /utf-8 /Zc:__cplusplus /Zc:preprocessor %(AdditionalOptions)</AdditionalOptions>
130142
</ClCompile>
131-
</ItemDefinitionGroup>
132-
<ItemDefinitionGroup>
143+
</ItemDefinitionGroup>
144+
<ItemDefinitionGroup>
133145
</ItemDefinitionGroup>
134146
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
135147
<ImportGroup Label="ExtensionTargets" />
136148
<ItemGroup>
137149
<Text Include="../../thirdparty/owemdjee/Awesome-Document-Image-Rectification/README.md" />
138150
</ItemGroup>
139-
<ImportGroup Label="PropertySheets">
151+
<ImportGroup Label="PropertySheets" >
140152
<Import Project="$(SolutionDir)\common-project-ultimate-override.props" Label="SolutionWideSettingsOverride" />
141153
</ImportGroup>
142-
</Project>
154+
</Project>
155+

0 commit comments

Comments
 (0)