mirror of
https://github.com/xmrig/xmrig.git
synced 2024-12-22 19:49:36 +00:00
Merge pull request #1675 from ybh1998/master
Fix Windows include files cases
This commit is contained in:
commit
e4aa1fad3f
3 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ if (WITH_TLS)
|
|||
set(OPENSSL_USE_STATIC_LIBS TRUE)
|
||||
set(OPENSSL_MSVC_STATIC_RT TRUE)
|
||||
|
||||
set(EXTRA_LIBS ${EXTRA_LIBS} Crypt32)
|
||||
set(EXTRA_LIBS ${EXTRA_LIBS} crypt32)
|
||||
elseif (APPLE)
|
||||
set(OPENSSL_USE_STATIC_LIBS TRUE)
|
||||
endif()
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
|
||||
#include <direct.h>
|
||||
#include <Shlobj.h>
|
||||
#include <shlobj.h>
|
||||
#include <windows.h>
|
||||
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
#include "crypto/rx/RxConfig.h"
|
||||
|
||||
|
||||
#include <Windows.h>
|
||||
#include <windows.h>
|
||||
#include <array>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
|
|
Loading…
Reference in a new issue