Fixed build error with vcpkg installed. (#141)
This commit is contained in:
parent
5020870cdf
commit
925eb2f1d0
@ -7,9 +7,9 @@
|
|||||||
#include "IXSelectInterruptFactory.h"
|
#include "IXSelectInterruptFactory.h"
|
||||||
|
|
||||||
#if defined(__linux__) || defined(__APPLE__)
|
#if defined(__linux__) || defined(__APPLE__)
|
||||||
#include <ixwebsocket/IXSelectInterruptPipe.h>
|
#include "IXSelectInterruptPipe.h"
|
||||||
#else
|
#else
|
||||||
#include <ixwebsocket/IXSelectInterrupt.h>
|
#include "IXSelectInterrupt.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
namespace ix
|
namespace ix
|
||||||
|
@ -9,18 +9,18 @@
|
|||||||
#ifdef IXWEBSOCKET_USE_TLS
|
#ifdef IXWEBSOCKET_USE_TLS
|
||||||
|
|
||||||
#ifdef IXWEBSOCKET_USE_MBED_TLS
|
#ifdef IXWEBSOCKET_USE_MBED_TLS
|
||||||
#include <ixwebsocket/IXSocketMbedTLS.h>
|
#include "IXSocketMbedTLS.h"
|
||||||
#elif defined(_WIN32)
|
#elif defined(_WIN32)
|
||||||
#include <ixwebsocket/IXSocketSChannel.h>
|
#include "IXSocketSChannel.h"
|
||||||
#elif defined(IXWEBSOCKET_USE_OPEN_SSL)
|
#elif defined(IXWEBSOCKET_USE_OPEN_SSL)
|
||||||
#include <ixwebsocket/IXSocketOpenSSL.h>
|
#include "IXSocketOpenSSL.h"
|
||||||
#elif __APPLE__
|
#elif __APPLE__
|
||||||
#include <ixwebsocket/IXSocketAppleSSL.h>
|
#include "IXSocketAppleSSL.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#include <ixwebsocket/IXSocket.h>
|
#include "IXSocket.h"
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user