-
Notifications
You must be signed in to change notification settings - Fork 141
Expand file tree
/
Copy pathhc_settings.props.example
More file actions
15 lines (15 loc) · 1008 Bytes
/
hc_settings.props.example
File metadata and controls
15 lines (15 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Exclude Zlib symbols from the libHttpClient lib -->
<HCNoZlib>true</HCNoZlib>
<!-- Exclude WebSocket APIs from libHttpClient lib, prevents pulling in 3rd party WebSocket dependencies -->
<HCNoWebSockets>true</HCNoWebSockets>
<!-- Enable or disable the optional compression-capable WebSocket provider on Win32/GDK MSBuild builds -->
<!-- <HCEnableWebSocketCompression>true</HCEnableWebSocketCompression> -->
<!-- Enable the optional websocketpp + WinTLS provider on GDK Xbox console builds. Defaults to false. -->
<!-- <HCEnableGDKXboxWebSocketCompression>false</HCEnableGDKXboxWebSocketCompression> -->
<!-- Prevents adding references to libHttpClient's private OpenSSL projects. Be sure to include your own OpenSSL binaries when linking -->
<HCExternalOpenSSL>true</HCExternalOpenSSL>
</PropertyGroup>
</Project>