argon2 2.0.0 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +70 -0
- data/.rubocop.yml +178 -5
- data/Changelog.md +10 -0
- data/Gemfile +2 -0
- data/README.md +29 -17
- data/Rakefile +2 -0
- data/Steepfile +16 -0
- data/argon2.gemspec +13 -7
- data/bin/console +5 -4
- data/bin/setup +6 -2
- data/bin/test +10 -0
- data/ext/argon2_wrap/argon_wrap.c +6 -0
- data/ext/argon2_wrap/extconf.rb +1 -0
- data/ext/argon2_wrap/libargon2_wrap.so +0 -0
- data/ext/argon2_wrap/test.c +0 -1
- data/ext/phc-winner-argon2/.gitignore +1 -0
- data/ext/phc-winner-argon2/Argon2.sln +2 -4
- data/ext/phc-winner-argon2/LICENSE +2 -2
- data/ext/phc-winner-argon2/Makefile +86 -18
- data/ext/phc-winner-argon2/README.md +3 -1
- data/ext/phc-winner-argon2/include/argon2.h +3 -3
- data/ext/phc-winner-argon2/libargon2.pc.in +18 -0
- data/ext/phc-winner-argon2/src/argon2.c +2 -2
- data/ext/phc-winner-argon2/src/bench.c +4 -4
- data/ext/phc-winner-argon2/src/blake2/blake2-impl.h +3 -3
- data/ext/phc-winner-argon2/src/blake2/blake2.h +2 -2
- data/ext/phc-winner-argon2/src/blake2/blake2b.c +2 -2
- data/ext/phc-winner-argon2/src/blake2/blamka-round-opt.h +2 -2
- data/ext/phc-winner-argon2/src/blake2/blamka-round-ref.h +2 -2
- data/ext/phc-winner-argon2/src/core.c +20 -6
- data/ext/phc-winner-argon2/src/core.h +2 -2
- data/ext/phc-winner-argon2/src/encoding.c +2 -2
- data/ext/phc-winner-argon2/src/encoding.h +2 -2
- data/ext/phc-winner-argon2/src/genkat.c +9 -3
- data/ext/phc-winner-argon2/src/genkat.h +2 -2
- data/ext/phc-winner-argon2/src/opt.c +2 -2
- data/ext/phc-winner-argon2/src/ref.c +2 -2
- data/ext/phc-winner-argon2/src/run.c +2 -2
- data/ext/phc-winner-argon2/src/test.c +2 -2
- data/ext/phc-winner-argon2/src/thread.c +2 -2
- data/ext/phc-winner-argon2/src/thread.h +2 -2
- data/ext/phc-winner-argon2/vs2015/Argon2Opt/Argon2Opt.vcxproj +11 -6
- data/ext/phc-winner-argon2/vs2015/Argon2OptBench/Argon2OptBench.vcxproj +11 -6
- data/ext/phc-winner-argon2/vs2015/Argon2OptDll/Argon2OptDll.vcxproj +11 -6
- data/ext/phc-winner-argon2/vs2015/Argon2OptGenKAT/Argon2OptGenKAT.vcxproj +11 -6
- data/ext/phc-winner-argon2/vs2015/Argon2OptTestCI/Argon2OptTestCI.vcxproj +16 -8
- data/ext/phc-winner-argon2/vs2015/Argon2Ref/Argon2Ref.vcxproj +25 -8
- data/ext/phc-winner-argon2/vs2015/Argon2RefBench/Argon2RefBench.vcxproj +11 -6
- data/ext/phc-winner-argon2/vs2015/Argon2RefDll/Argon2RefDll.vcxproj +11 -6
- data/ext/phc-winner-argon2/vs2015/Argon2RefGenKAT/Argon2RefGenKAT.vcxproj +11 -6
- data/ext/phc-winner-argon2/vs2015/Argon2RefTestCI/Argon2RefTestCI.vcxproj +11 -6
- data/lib/argon2/ffi_engine.rb +49 -17
- data/lib/argon2/hash_format.rb +49 -0
- data/lib/argon2/version.rb +1 -1
- data/lib/argon2.rb +19 -8
- data/sig/argon2.rbs +16 -0
- data/sig/constants.rbs +8 -0
- data/sig/version.rbs +4 -0
- metadata +59 -39
- data/.travis.yml +0 -14
- data/ext/argon2_wrap/tests +0 -0
- data/ext/phc-winner-argon2/libargon2.pc +0 -16
@@ -32,43 +32,44 @@
|
|
32
32
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
33
33
|
</PropertyGroup>
|
34
34
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
35
|
+
<!-- Set DefaultPlatformToolset to v100 (VS2010) if not defined -->
|
36
|
+
<PropertyGroup Label="EmptyDefaultPlatformToolset">
|
37
|
+
<DefaultPlatformToolset Condition=" '$(DefaultPlatformToolset)' == '' ">v100</DefaultPlatformToolset>
|
38
|
+
</PropertyGroup>
|
39
|
+
<PropertyGroup Label="PlatformToolset">
|
40
|
+
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
41
|
+
</PropertyGroup>
|
35
42
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
36
43
|
<ConfigurationType>Application</ConfigurationType>
|
37
44
|
<UseDebugLibraries>true</UseDebugLibraries>
|
38
|
-
<PlatformToolset>v140</PlatformToolset>
|
39
45
|
<CharacterSet>MultiByte</CharacterSet>
|
40
46
|
</PropertyGroup>
|
41
47
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
42
48
|
<ConfigurationType>Application</ConfigurationType>
|
43
49
|
<UseDebugLibraries>false</UseDebugLibraries>
|
44
|
-
<PlatformToolset>v140</PlatformToolset>
|
45
50
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
46
51
|
<CharacterSet>MultiByte</CharacterSet>
|
47
52
|
</PropertyGroup>
|
48
53
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
49
54
|
<ConfigurationType>Application</ConfigurationType>
|
50
55
|
<UseDebugLibraries>false</UseDebugLibraries>
|
51
|
-
<PlatformToolset>v140</PlatformToolset>
|
52
56
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
53
57
|
<CharacterSet>MultiByte</CharacterSet>
|
54
58
|
</PropertyGroup>
|
55
59
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
56
60
|
<ConfigurationType>Application</ConfigurationType>
|
57
61
|
<UseDebugLibraries>true</UseDebugLibraries>
|
58
|
-
<PlatformToolset>v140</PlatformToolset>
|
59
62
|
<CharacterSet>MultiByte</CharacterSet>
|
60
63
|
</PropertyGroup>
|
61
64
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
62
65
|
<ConfigurationType>Application</ConfigurationType>
|
63
66
|
<UseDebugLibraries>false</UseDebugLibraries>
|
64
|
-
<PlatformToolset>v140</PlatformToolset>
|
65
67
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
66
68
|
<CharacterSet>MultiByte</CharacterSet>
|
67
69
|
</PropertyGroup>
|
68
70
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
69
71
|
<ConfigurationType>Application</ConfigurationType>
|
70
72
|
<UseDebugLibraries>false</UseDebugLibraries>
|
71
|
-
<PlatformToolset>v140</PlatformToolset>
|
72
73
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
73
74
|
<CharacterSet>MultiByte</CharacterSet>
|
74
75
|
</PropertyGroup>
|
@@ -154,6 +155,7 @@
|
|
154
155
|
<Link>
|
155
156
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
156
157
|
<OptimizeReferences>true</OptimizeReferences>
|
158
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
157
159
|
</Link>
|
158
160
|
</ItemDefinitionGroup>
|
159
161
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
@@ -169,6 +171,7 @@
|
|
169
171
|
<Link>
|
170
172
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
171
173
|
<OptimizeReferences>true</OptimizeReferences>
|
174
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
172
175
|
</Link>
|
173
176
|
</ItemDefinitionGroup>
|
174
177
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
@@ -183,6 +186,7 @@
|
|
183
186
|
<Link>
|
184
187
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
185
188
|
<OptimizeReferences>true</OptimizeReferences>
|
189
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
186
190
|
</Link>
|
187
191
|
</ItemDefinitionGroup>
|
188
192
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
@@ -198,6 +202,7 @@
|
|
198
202
|
<Link>
|
199
203
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
200
204
|
<OptimizeReferences>true</OptimizeReferences>
|
205
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
201
206
|
</Link>
|
202
207
|
</ItemDefinitionGroup>
|
203
208
|
<ItemGroup>
|
@@ -32,43 +32,44 @@
|
|
32
32
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
33
33
|
</PropertyGroup>
|
34
34
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
35
|
+
<!-- Set DefaultPlatformToolset to v100 (VS2010) if not defined -->
|
36
|
+
<PropertyGroup Label="EmptyDefaultPlatformToolset">
|
37
|
+
<DefaultPlatformToolset Condition=" '$(DefaultPlatformToolset)' == '' ">v100</DefaultPlatformToolset>
|
38
|
+
</PropertyGroup>
|
39
|
+
<PropertyGroup Label="PlatformToolset">
|
40
|
+
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
41
|
+
</PropertyGroup>
|
35
42
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
36
43
|
<ConfigurationType>Application</ConfigurationType>
|
37
44
|
<UseDebugLibraries>true</UseDebugLibraries>
|
38
|
-
<PlatformToolset>v140</PlatformToolset>
|
39
45
|
<CharacterSet>MultiByte</CharacterSet>
|
40
46
|
</PropertyGroup>
|
41
47
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
42
48
|
<ConfigurationType>Application</ConfigurationType>
|
43
49
|
<UseDebugLibraries>false</UseDebugLibraries>
|
44
|
-
<PlatformToolset>v140</PlatformToolset>
|
45
50
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
46
51
|
<CharacterSet>MultiByte</CharacterSet>
|
47
52
|
</PropertyGroup>
|
48
53
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
49
54
|
<ConfigurationType>Application</ConfigurationType>
|
50
55
|
<UseDebugLibraries>false</UseDebugLibraries>
|
51
|
-
<PlatformToolset>v140</PlatformToolset>
|
52
56
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
53
57
|
<CharacterSet>MultiByte</CharacterSet>
|
54
58
|
</PropertyGroup>
|
55
59
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
56
60
|
<ConfigurationType>Application</ConfigurationType>
|
57
61
|
<UseDebugLibraries>true</UseDebugLibraries>
|
58
|
-
<PlatformToolset>v140</PlatformToolset>
|
59
62
|
<CharacterSet>MultiByte</CharacterSet>
|
60
63
|
</PropertyGroup>
|
61
64
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
62
65
|
<ConfigurationType>Application</ConfigurationType>
|
63
66
|
<UseDebugLibraries>false</UseDebugLibraries>
|
64
|
-
<PlatformToolset>v140</PlatformToolset>
|
65
67
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
66
68
|
<CharacterSet>MultiByte</CharacterSet>
|
67
69
|
</PropertyGroup>
|
68
70
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
69
71
|
<ConfigurationType>Application</ConfigurationType>
|
70
72
|
<UseDebugLibraries>false</UseDebugLibraries>
|
71
|
-
<PlatformToolset>v140</PlatformToolset>
|
72
73
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
73
74
|
<CharacterSet>MultiByte</CharacterSet>
|
74
75
|
</PropertyGroup>
|
@@ -154,6 +155,7 @@
|
|
154
155
|
<Link>
|
155
156
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
156
157
|
<OptimizeReferences>true</OptimizeReferences>
|
158
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
157
159
|
</Link>
|
158
160
|
</ItemDefinitionGroup>
|
159
161
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
@@ -169,6 +171,7 @@
|
|
169
171
|
<Link>
|
170
172
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
171
173
|
<OptimizeReferences>true</OptimizeReferences>
|
174
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
172
175
|
</Link>
|
173
176
|
</ItemDefinitionGroup>
|
174
177
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
@@ -183,6 +186,7 @@
|
|
183
186
|
<Link>
|
184
187
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
185
188
|
<OptimizeReferences>true</OptimizeReferences>
|
189
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
186
190
|
</Link>
|
187
191
|
</ItemDefinitionGroup>
|
188
192
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
@@ -198,6 +202,7 @@
|
|
198
202
|
<Link>
|
199
203
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
200
204
|
<OptimizeReferences>true</OptimizeReferences>
|
205
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
201
206
|
</Link>
|
202
207
|
</ItemDefinitionGroup>
|
203
208
|
<ItemGroup>
|
@@ -32,43 +32,44 @@
|
|
32
32
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
33
33
|
</PropertyGroup>
|
34
34
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
35
|
+
<!-- Set DefaultPlatformToolset to v100 (VS2010) if not defined -->
|
36
|
+
<PropertyGroup Label="EmptyDefaultPlatformToolset">
|
37
|
+
<DefaultPlatformToolset Condition=" '$(DefaultPlatformToolset)' == '' ">v100</DefaultPlatformToolset>
|
38
|
+
</PropertyGroup>
|
39
|
+
<PropertyGroup Label="PlatformToolset">
|
40
|
+
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
41
|
+
</PropertyGroup>
|
35
42
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
36
43
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
37
44
|
<UseDebugLibraries>true</UseDebugLibraries>
|
38
|
-
<PlatformToolset>v140</PlatformToolset>
|
39
45
|
<CharacterSet>MultiByte</CharacterSet>
|
40
46
|
</PropertyGroup>
|
41
47
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
42
48
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
43
49
|
<UseDebugLibraries>false</UseDebugLibraries>
|
44
|
-
<PlatformToolset>v140</PlatformToolset>
|
45
50
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
46
51
|
<CharacterSet>MultiByte</CharacterSet>
|
47
52
|
</PropertyGroup>
|
48
53
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
49
54
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
50
55
|
<UseDebugLibraries>false</UseDebugLibraries>
|
51
|
-
<PlatformToolset>v140</PlatformToolset>
|
52
56
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
53
57
|
<CharacterSet>MultiByte</CharacterSet>
|
54
58
|
</PropertyGroup>
|
55
59
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
56
60
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
57
61
|
<UseDebugLibraries>true</UseDebugLibraries>
|
58
|
-
<PlatformToolset>v140</PlatformToolset>
|
59
62
|
<CharacterSet>MultiByte</CharacterSet>
|
60
63
|
</PropertyGroup>
|
61
64
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
62
65
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
63
66
|
<UseDebugLibraries>false</UseDebugLibraries>
|
64
|
-
<PlatformToolset>v140</PlatformToolset>
|
65
67
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
66
68
|
<CharacterSet>MultiByte</CharacterSet>
|
67
69
|
</PropertyGroup>
|
68
70
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
69
71
|
<ConfigurationType>DynamicLibrary</ConfigurationType>
|
70
72
|
<UseDebugLibraries>false</UseDebugLibraries>
|
71
|
-
<PlatformToolset>v140</PlatformToolset>
|
72
73
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
73
74
|
<CharacterSet>MultiByte</CharacterSet>
|
74
75
|
</PropertyGroup>
|
@@ -154,6 +155,7 @@
|
|
154
155
|
<Link>
|
155
156
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
156
157
|
<OptimizeReferences>true</OptimizeReferences>
|
158
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
157
159
|
</Link>
|
158
160
|
</ItemDefinitionGroup>
|
159
161
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
@@ -169,6 +171,7 @@
|
|
169
171
|
<Link>
|
170
172
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
171
173
|
<OptimizeReferences>true</OptimizeReferences>
|
174
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
172
175
|
</Link>
|
173
176
|
</ItemDefinitionGroup>
|
174
177
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
@@ -183,6 +186,7 @@
|
|
183
186
|
<Link>
|
184
187
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
185
188
|
<OptimizeReferences>true</OptimizeReferences>
|
189
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
186
190
|
</Link>
|
187
191
|
</ItemDefinitionGroup>
|
188
192
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
@@ -198,6 +202,7 @@
|
|
198
202
|
<Link>
|
199
203
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
200
204
|
<OptimizeReferences>true</OptimizeReferences>
|
205
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
201
206
|
</Link>
|
202
207
|
</ItemDefinitionGroup>
|
203
208
|
<ItemGroup>
|
@@ -32,43 +32,44 @@
|
|
32
32
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
33
33
|
</PropertyGroup>
|
34
34
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
35
|
+
<!-- Set DefaultPlatformToolset to v100 (VS2010) if not defined -->
|
36
|
+
<PropertyGroup Label="EmptyDefaultPlatformToolset">
|
37
|
+
<DefaultPlatformToolset Condition=" '$(DefaultPlatformToolset)' == '' ">v100</DefaultPlatformToolset>
|
38
|
+
</PropertyGroup>
|
39
|
+
<PropertyGroup Label="PlatformToolset">
|
40
|
+
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
41
|
+
</PropertyGroup>
|
35
42
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
36
43
|
<ConfigurationType>Application</ConfigurationType>
|
37
44
|
<UseDebugLibraries>true</UseDebugLibraries>
|
38
|
-
<PlatformToolset>v140</PlatformToolset>
|
39
45
|
<CharacterSet>MultiByte</CharacterSet>
|
40
46
|
</PropertyGroup>
|
41
47
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
42
48
|
<ConfigurationType>Application</ConfigurationType>
|
43
49
|
<UseDebugLibraries>false</UseDebugLibraries>
|
44
|
-
<PlatformToolset>v140</PlatformToolset>
|
45
50
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
46
51
|
<CharacterSet>MultiByte</CharacterSet>
|
47
52
|
</PropertyGroup>
|
48
53
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
49
54
|
<ConfigurationType>Application</ConfigurationType>
|
50
55
|
<UseDebugLibraries>false</UseDebugLibraries>
|
51
|
-
<PlatformToolset>v140</PlatformToolset>
|
52
56
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
53
57
|
<CharacterSet>MultiByte</CharacterSet>
|
54
58
|
</PropertyGroup>
|
55
59
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
56
60
|
<ConfigurationType>Application</ConfigurationType>
|
57
61
|
<UseDebugLibraries>true</UseDebugLibraries>
|
58
|
-
<PlatformToolset>v140</PlatformToolset>
|
59
62
|
<CharacterSet>MultiByte</CharacterSet>
|
60
63
|
</PropertyGroup>
|
61
64
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
62
65
|
<ConfigurationType>Application</ConfigurationType>
|
63
66
|
<UseDebugLibraries>false</UseDebugLibraries>
|
64
|
-
<PlatformToolset>v140</PlatformToolset>
|
65
67
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
66
68
|
<CharacterSet>MultiByte</CharacterSet>
|
67
69
|
</PropertyGroup>
|
68
70
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
69
71
|
<ConfigurationType>Application</ConfigurationType>
|
70
72
|
<UseDebugLibraries>false</UseDebugLibraries>
|
71
|
-
<PlatformToolset>v140</PlatformToolset>
|
72
73
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
73
74
|
<CharacterSet>MultiByte</CharacterSet>
|
74
75
|
</PropertyGroup>
|
@@ -160,6 +161,7 @@
|
|
160
161
|
<Link>
|
161
162
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
162
163
|
<OptimizeReferences>true</OptimizeReferences>
|
164
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
163
165
|
</Link>
|
164
166
|
</ItemDefinitionGroup>
|
165
167
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
@@ -177,6 +179,7 @@
|
|
177
179
|
<Link>
|
178
180
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
179
181
|
<OptimizeReferences>true</OptimizeReferences>
|
182
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
180
183
|
</Link>
|
181
184
|
</ItemDefinitionGroup>
|
182
185
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
@@ -193,6 +196,7 @@
|
|
193
196
|
<Link>
|
194
197
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
195
198
|
<OptimizeReferences>true</OptimizeReferences>
|
199
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
196
200
|
</Link>
|
197
201
|
</ItemDefinitionGroup>
|
198
202
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
@@ -210,6 +214,7 @@
|
|
210
214
|
<Link>
|
211
215
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
212
216
|
<OptimizeReferences>true</OptimizeReferences>
|
217
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
213
218
|
</Link>
|
214
219
|
</ItemDefinitionGroup>
|
215
220
|
<ItemGroup>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
2
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
3
|
<ItemGroup Label="ProjectConfigurations">
|
4
4
|
<ProjectConfiguration Include="Debug|Win32">
|
@@ -33,43 +33,44 @@
|
|
33
33
|
<ProjectName>Argon2OptTestCI</ProjectName>
|
34
34
|
</PropertyGroup>
|
35
35
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
36
|
+
<!-- Set DefaultPlatformToolset to v100 (VS2010) if not defined -->
|
37
|
+
<PropertyGroup Label="EmptyDefaultPlatformToolset">
|
38
|
+
<DefaultPlatformToolset Condition=" '$(DefaultPlatformToolset)' == '' ">v100</DefaultPlatformToolset>
|
39
|
+
</PropertyGroup>
|
40
|
+
<PropertyGroup Label="PlatformToolset">
|
41
|
+
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
42
|
+
</PropertyGroup>
|
36
43
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
37
44
|
<ConfigurationType>Application</ConfigurationType>
|
38
45
|
<UseDebugLibraries>true</UseDebugLibraries>
|
39
|
-
<PlatformToolset>v140</PlatformToolset>
|
40
46
|
<CharacterSet>MultiByte</CharacterSet>
|
41
47
|
</PropertyGroup>
|
42
48
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
43
49
|
<ConfigurationType>Application</ConfigurationType>
|
44
50
|
<UseDebugLibraries>false</UseDebugLibraries>
|
45
|
-
<PlatformToolset>v140</PlatformToolset>
|
46
51
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
47
52
|
<CharacterSet>MultiByte</CharacterSet>
|
48
53
|
</PropertyGroup>
|
49
54
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
50
55
|
<ConfigurationType>Application</ConfigurationType>
|
51
56
|
<UseDebugLibraries>false</UseDebugLibraries>
|
52
|
-
<PlatformToolset>v140</PlatformToolset>
|
53
57
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
54
58
|
<CharacterSet>MultiByte</CharacterSet>
|
55
59
|
</PropertyGroup>
|
56
60
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
57
61
|
<ConfigurationType>Application</ConfigurationType>
|
58
62
|
<UseDebugLibraries>true</UseDebugLibraries>
|
59
|
-
<PlatformToolset>v140</PlatformToolset>
|
60
63
|
<CharacterSet>MultiByte</CharacterSet>
|
61
64
|
</PropertyGroup>
|
62
65
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
63
66
|
<ConfigurationType>Application</ConfigurationType>
|
64
67
|
<UseDebugLibraries>false</UseDebugLibraries>
|
65
|
-
<PlatformToolset>v140</PlatformToolset>
|
66
68
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
67
69
|
<CharacterSet>MultiByte</CharacterSet>
|
68
70
|
</PropertyGroup>
|
69
71
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
70
72
|
<ConfigurationType>Application</ConfigurationType>
|
71
73
|
<UseDebugLibraries>false</UseDebugLibraries>
|
72
|
-
<PlatformToolset>v140</PlatformToolset>
|
73
74
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
74
75
|
<CharacterSet>MultiByte</CharacterSet>
|
75
76
|
</PropertyGroup>
|
@@ -142,6 +143,9 @@
|
|
142
143
|
<SDLCheck>true</SDLCheck>
|
143
144
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
144
145
|
</ClCompile>
|
146
|
+
<Link>
|
147
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
148
|
+
</Link>
|
145
149
|
</ItemDefinitionGroup>
|
146
150
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
147
151
|
<ClCompile>
|
@@ -155,6 +159,7 @@
|
|
155
159
|
<Link>
|
156
160
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
157
161
|
<OptimizeReferences>true</OptimizeReferences>
|
162
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
158
163
|
</Link>
|
159
164
|
</ItemDefinitionGroup>
|
160
165
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
@@ -170,6 +175,7 @@
|
|
170
175
|
<Link>
|
171
176
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
172
177
|
<OptimizeReferences>true</OptimizeReferences>
|
178
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
173
179
|
</Link>
|
174
180
|
</ItemDefinitionGroup>
|
175
181
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
@@ -184,6 +190,7 @@
|
|
184
190
|
<Link>
|
185
191
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
186
192
|
<OptimizeReferences>true</OptimizeReferences>
|
193
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
187
194
|
</Link>
|
188
195
|
</ItemDefinitionGroup>
|
189
196
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
@@ -199,6 +206,7 @@
|
|
199
206
|
<Link>
|
200
207
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
201
208
|
<OptimizeReferences>true</OptimizeReferences>
|
209
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
202
210
|
</Link>
|
203
211
|
</ItemDefinitionGroup>
|
204
212
|
<ItemGroup>
|
@@ -224,4 +232,4 @@
|
|
224
232
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
225
233
|
<ImportGroup Label="ExtensionTargets">
|
226
234
|
</ImportGroup>
|
227
|
-
</Project>
|
235
|
+
</Project>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
2
|
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
3
|
<ItemGroup Label="ProjectConfigurations">
|
4
4
|
<ProjectConfiguration Include="Debug|Win32">
|
@@ -32,43 +32,44 @@
|
|
32
32
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
33
33
|
</PropertyGroup>
|
34
34
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
35
|
+
<!-- Set DefaultPlatformToolset to v100 (VS2010) if not defined -->
|
36
|
+
<PropertyGroup Label="EmptyDefaultPlatformToolset">
|
37
|
+
<DefaultPlatformToolset Condition=" '$(DefaultPlatformToolset)' == '' ">v100</DefaultPlatformToolset>
|
38
|
+
</PropertyGroup>
|
39
|
+
<PropertyGroup Label="PlatformToolset">
|
40
|
+
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
41
|
+
</PropertyGroup>
|
35
42
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
36
43
|
<ConfigurationType>Application</ConfigurationType>
|
37
44
|
<UseDebugLibraries>true</UseDebugLibraries>
|
38
|
-
<PlatformToolset>v140</PlatformToolset>
|
39
45
|
<CharacterSet>MultiByte</CharacterSet>
|
40
46
|
</PropertyGroup>
|
41
47
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
42
48
|
<ConfigurationType>Application</ConfigurationType>
|
43
49
|
<UseDebugLibraries>false</UseDebugLibraries>
|
44
|
-
<PlatformToolset>v140</PlatformToolset>
|
45
50
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
46
51
|
<CharacterSet>MultiByte</CharacterSet>
|
47
52
|
</PropertyGroup>
|
48
53
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
49
54
|
<ConfigurationType>Application</ConfigurationType>
|
50
55
|
<UseDebugLibraries>false</UseDebugLibraries>
|
51
|
-
<PlatformToolset>v140</PlatformToolset>
|
52
56
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
53
57
|
<CharacterSet>MultiByte</CharacterSet>
|
54
58
|
</PropertyGroup>
|
55
59
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
56
60
|
<ConfigurationType>Application</ConfigurationType>
|
57
61
|
<UseDebugLibraries>true</UseDebugLibraries>
|
58
|
-
<PlatformToolset>v140</PlatformToolset>
|
59
62
|
<CharacterSet>MultiByte</CharacterSet>
|
60
63
|
</PropertyGroup>
|
61
64
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
62
65
|
<ConfigurationType>Application</ConfigurationType>
|
63
66
|
<UseDebugLibraries>false</UseDebugLibraries>
|
64
|
-
<PlatformToolset>v140</PlatformToolset>
|
65
67
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
66
68
|
<CharacterSet>MultiByte</CharacterSet>
|
67
69
|
</PropertyGroup>
|
68
70
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
69
71
|
<ConfigurationType>Application</ConfigurationType>
|
70
72
|
<UseDebugLibraries>false</UseDebugLibraries>
|
71
|
-
<PlatformToolset>v140</PlatformToolset>
|
72
73
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
73
74
|
<CharacterSet>MultiByte</CharacterSet>
|
74
75
|
</PropertyGroup>
|
@@ -132,7 +133,11 @@
|
|
132
133
|
<Optimization>Disabled</Optimization>
|
133
134
|
<SDLCheck>true</SDLCheck>
|
134
135
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
136
|
+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
135
137
|
</ClCompile>
|
138
|
+
<Link>
|
139
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
140
|
+
</Link>
|
136
141
|
</ItemDefinitionGroup>
|
137
142
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
138
143
|
<ClCompile>
|
@@ -140,7 +145,11 @@
|
|
140
145
|
<Optimization>Disabled</Optimization>
|
141
146
|
<SDLCheck>true</SDLCheck>
|
142
147
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
148
|
+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
143
149
|
</ClCompile>
|
150
|
+
<Link>
|
151
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
152
|
+
</Link>
|
144
153
|
</ItemDefinitionGroup>
|
145
154
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
146
155
|
<ClCompile>
|
@@ -150,10 +159,12 @@
|
|
150
159
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
151
160
|
<SDLCheck>true</SDLCheck>
|
152
161
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
162
|
+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
153
163
|
</ClCompile>
|
154
164
|
<Link>
|
155
165
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
156
166
|
<OptimizeReferences>true</OptimizeReferences>
|
167
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
157
168
|
</Link>
|
158
169
|
</ItemDefinitionGroup>
|
159
170
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
@@ -165,10 +176,12 @@
|
|
165
176
|
<SDLCheck>true</SDLCheck>
|
166
177
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
167
178
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
179
|
+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
168
180
|
</ClCompile>
|
169
181
|
<Link>
|
170
182
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
171
183
|
<OptimizeReferences>true</OptimizeReferences>
|
184
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
172
185
|
</Link>
|
173
186
|
</ItemDefinitionGroup>
|
174
187
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
@@ -179,10 +192,12 @@
|
|
179
192
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
180
193
|
<SDLCheck>true</SDLCheck>
|
181
194
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
195
|
+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
182
196
|
</ClCompile>
|
183
197
|
<Link>
|
184
198
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
185
199
|
<OptimizeReferences>true</OptimizeReferences>
|
200
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
186
201
|
</Link>
|
187
202
|
</ItemDefinitionGroup>
|
188
203
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
@@ -194,10 +209,12 @@
|
|
194
209
|
<SDLCheck>true</SDLCheck>
|
195
210
|
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
196
211
|
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
212
|
+
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
197
213
|
</ClCompile>
|
198
214
|
<Link>
|
199
215
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
200
216
|
<OptimizeReferences>true</OptimizeReferences>
|
217
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
201
218
|
</Link>
|
202
219
|
</ItemDefinitionGroup>
|
203
220
|
<ItemGroup>
|
@@ -223,4 +240,4 @@
|
|
223
240
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
224
241
|
<ImportGroup Label="ExtensionTargets">
|
225
242
|
</ImportGroup>
|
226
|
-
</Project>
|
243
|
+
</Project>
|
@@ -32,43 +32,44 @@
|
|
32
32
|
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
33
33
|
</PropertyGroup>
|
34
34
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
35
|
+
<!-- Set DefaultPlatformToolset to v100 (VS2010) if not defined -->
|
36
|
+
<PropertyGroup Label="EmptyDefaultPlatformToolset">
|
37
|
+
<DefaultPlatformToolset Condition=" '$(DefaultPlatformToolset)' == '' ">v100</DefaultPlatformToolset>
|
38
|
+
</PropertyGroup>
|
39
|
+
<PropertyGroup Label="PlatformToolset">
|
40
|
+
<PlatformToolset>$(DefaultPlatformToolset)</PlatformToolset>
|
41
|
+
</PropertyGroup>
|
35
42
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
36
43
|
<ConfigurationType>Application</ConfigurationType>
|
37
44
|
<UseDebugLibraries>true</UseDebugLibraries>
|
38
|
-
<PlatformToolset>v140</PlatformToolset>
|
39
45
|
<CharacterSet>MultiByte</CharacterSet>
|
40
46
|
</PropertyGroup>
|
41
47
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
42
48
|
<ConfigurationType>Application</ConfigurationType>
|
43
49
|
<UseDebugLibraries>false</UseDebugLibraries>
|
44
|
-
<PlatformToolset>v140</PlatformToolset>
|
45
50
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
46
51
|
<CharacterSet>MultiByte</CharacterSet>
|
47
52
|
</PropertyGroup>
|
48
53
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'" Label="Configuration">
|
49
54
|
<ConfigurationType>Application</ConfigurationType>
|
50
55
|
<UseDebugLibraries>false</UseDebugLibraries>
|
51
|
-
<PlatformToolset>v140</PlatformToolset>
|
52
56
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
53
57
|
<CharacterSet>MultiByte</CharacterSet>
|
54
58
|
</PropertyGroup>
|
55
59
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
56
60
|
<ConfigurationType>Application</ConfigurationType>
|
57
61
|
<UseDebugLibraries>true</UseDebugLibraries>
|
58
|
-
<PlatformToolset>v140</PlatformToolset>
|
59
62
|
<CharacterSet>MultiByte</CharacterSet>
|
60
63
|
</PropertyGroup>
|
61
64
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
62
65
|
<ConfigurationType>Application</ConfigurationType>
|
63
66
|
<UseDebugLibraries>false</UseDebugLibraries>
|
64
|
-
<PlatformToolset>v140</PlatformToolset>
|
65
67
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
66
68
|
<CharacterSet>MultiByte</CharacterSet>
|
67
69
|
</PropertyGroup>
|
68
70
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'" Label="Configuration">
|
69
71
|
<ConfigurationType>Application</ConfigurationType>
|
70
72
|
<UseDebugLibraries>false</UseDebugLibraries>
|
71
|
-
<PlatformToolset>v140</PlatformToolset>
|
72
73
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
73
74
|
<CharacterSet>MultiByte</CharacterSet>
|
74
75
|
</PropertyGroup>
|
@@ -154,6 +155,7 @@
|
|
154
155
|
<Link>
|
155
156
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
156
157
|
<OptimizeReferences>true</OptimizeReferences>
|
158
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
157
159
|
</Link>
|
158
160
|
</ItemDefinitionGroup>
|
159
161
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|Win32'">
|
@@ -169,6 +171,7 @@
|
|
169
171
|
<Link>
|
170
172
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
171
173
|
<OptimizeReferences>true</OptimizeReferences>
|
174
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
172
175
|
</Link>
|
173
176
|
</ItemDefinitionGroup>
|
174
177
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
@@ -183,6 +186,7 @@
|
|
183
186
|
<Link>
|
184
187
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
185
188
|
<OptimizeReferences>true</OptimizeReferences>
|
189
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
186
190
|
</Link>
|
187
191
|
</ItemDefinitionGroup>
|
188
192
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseStatic|x64'">
|
@@ -198,6 +202,7 @@
|
|
198
202
|
<Link>
|
199
203
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
200
204
|
<OptimizeReferences>true</OptimizeReferences>
|
205
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
201
206
|
</Link>
|
202
207
|
</ItemDefinitionGroup>
|
203
208
|
<ItemGroup>
|