Skip to content

Commit e35af3d

Browse files
committed
Update VS props to suppress missing openssl PDB warnings.
1 parent 1ae6ca2 commit e35af3d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

builds/msvc/vs2013/bitcoin-server/bitcoin-server.props

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616
<EnablePREfast>false</EnablePREfast>
1717
<PreprocessorDefinitions>_WIN32_WINNT=0x0600;%(PreprocessorDefinitions)</PreprocessorDefinitions>
1818
</ClCompile>
19-
<Link Condition="$(Configuration.IndexOf('Debug')) != -1">
19+
<!-- Suppress warnings from missing OpenSSL PDBs. -->
20+
<Link Condition="'$(DebugOrRelease)' == 'debug'">
2021
<AdditionalOptions>/OPT:NOLBR /IGNORE:4099 %(AdditionalOptions)</AdditionalOptions>
21-
</Link>
22+
</Link>
2223
</ItemDefinitionGroup>
2324

2425
<!-- Dependencies -->

0 commit comments

Comments
 (0)