Fixed build error with vcpkg installed. (#141)

This commit is contained in:
Matthew Albrecht
2020-01-07 12:40:36 -06:00
committed by Benjamin Sergeant
parent f6c482c65d
commit d72d516a92
2 changed files with 7 additions and 7 deletions

View File

@ -9,18 +9,18 @@
#ifdef IXWEBSOCKET_USE_TLS
#ifdef IXWEBSOCKET_USE_MBED_TLS
#include <ixwebsocket/IXSocketMbedTLS.h>
#include "IXSocketMbedTLS.h"
#elif defined(_WIN32)
#include <ixwebsocket/IXSocketSChannel.h>
#include "IXSocketSChannel.h"
#elif defined(IXWEBSOCKET_USE_OPEN_SSL)
#include <ixwebsocket/IXSocketOpenSSL.h>
#include "IXSocketOpenSSL.h"
#elif __APPLE__
#include <ixwebsocket/IXSocketAppleSSL.h>
#include "IXSocketAppleSSL.h"
#endif
#else
#include <ixwebsocket/IXSocket.h>
#include "IXSocket.h"
#endif