Skip to content

Commit 3329b84

Browse files
committed
Fix setting DebugType for real this time, probably.
1 parent 3cdfb0a commit 3329b84

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/sdk/build/Zig.Sdk.Symbols.targets

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@
55
separate PDB file is produced.
66
-->
77

8-
<PropertyGroup Condition="'$(DebugSymbols)' == ''">
9-
<DebugSymbols>false</DebugSymbols>
10-
<DebugSymbols Condition="'$(Configuration)' == 'Debug'">true</DebugSymbols>
11-
</PropertyGroup>
12-
13-
<PropertyGroup Condition="'$(DebugSymbols)' == 'true'">
8+
<PropertyGroup>
149
<DebugType>embedded</DebugType>
1510
<DebugType Condition="'$(TargetSystem)' == 'windows'">full</DebugType>
11+
<DebugType Condition="'$(DebugSymbols)' == 'false'">none</DebugType>
1612
</PropertyGroup>
1713
</Project>

0 commit comments

Comments
 (0)