Moved Algorithm class.

This commit is contained in:
XMRig 2019-06-09 16:46:44 +07:00
parent d9eb700e03
commit b684150336
8 changed files with 8 additions and 8 deletions

View file

@ -25,7 +25,6 @@ set(HEADERS
src/api/interfaces/IApiListener.h src/api/interfaces/IApiListener.h
src/App.h src/App.h
src/common/cpu/Cpu.h src/common/cpu/Cpu.h
src/common/crypto/Algorithm.h
src/common/crypto/keccak.h src/common/crypto/keccak.h
src/common/interfaces/ICpuInfo.h src/common/interfaces/ICpuInfo.h
src/common/Platform.h src/common/Platform.h
@ -68,6 +67,7 @@ set(HEADERS_CRYPTO
src/crypto/cn/hash.h src/crypto/cn/hash.h
src/crypto/cn/skein_port.h src/crypto/cn/skein_port.h
src/crypto/cn/soft_aes.h src/crypto/cn/soft_aes.h
src/crypto/common/Algorithm.h
src/crypto/common/portable/mm_malloc.h src/crypto/common/portable/mm_malloc.h
src/crypto/common/VirtualMemory.h src/crypto/common/VirtualMemory.h
) )
@ -82,7 +82,6 @@ set(SOURCES
"${SOURCES_BASE}" "${SOURCES_BASE}"
"${SOURCES_BASE_HTTP}" "${SOURCES_BASE_HTTP}"
src/App.cpp src/App.cpp
src/common/crypto/Algorithm.cpp
src/common/crypto/keccak.cpp src/common/crypto/keccak.cpp
src/common/Platform.cpp src/common/Platform.cpp
src/core/config/Config.cpp src/core/config/Config.cpp
@ -107,6 +106,7 @@ set(SOURCES_CRYPTO
src/crypto/cn/c_blake256.c src/crypto/cn/c_blake256.c
src/crypto/cn/c_jh.c src/crypto/cn/c_jh.c
src/crypto/cn/c_skein.c src/crypto/cn/c_skein.c
src/crypto/common/Algorithm.cpp
) )
if (WIN32) if (WIN32)

View file

@ -26,7 +26,7 @@
#define XMRIG_ICONFIG_H #define XMRIG_ICONFIG_H
#include "common/crypto/Algorithm.h" #include "crypto/common/Algorithm.h"
#include "rapidjson/fwd.h" #include "rapidjson/fwd.h"

View file

@ -26,7 +26,7 @@
#define XMRIG_ICONFIGTRANSFORM_H #define XMRIG_ICONFIGTRANSFORM_H
#include "common/crypto/Algorithm.h" #include "crypto/common/Algorithm.h"
#include "rapidjson/fwd.h" #include "rapidjson/fwd.h"

View file

@ -40,7 +40,7 @@
#include "base/net/stratum/SubmitResult.h" #include "base/net/stratum/SubmitResult.h"
#include "base/net/tools/RecvBuf.h" #include "base/net/tools/RecvBuf.h"
#include "base/net/tools/Storage.h" #include "base/net/tools/Storage.h"
#include "common/crypto/Algorithm.h" #include "crypto/common/Algorithm.h"
typedef struct bio_st BIO; typedef struct bio_st BIO;

View file

@ -33,7 +33,7 @@
#include "base/tools/String.h" #include "base/tools/String.h"
#include "common/crypto/Algorithm.h" #include "crypto/common/Algorithm.h"
namespace xmrig { namespace xmrig {

View file

@ -32,7 +32,7 @@
#include "base/tools/String.h" #include "base/tools/String.h"
#include "common/crypto/Algorithm.h" #include "crypto/common/Algorithm.h"
#include "rapidjson/fwd.h" #include "rapidjson/fwd.h"

View file

@ -30,7 +30,7 @@
#include <stdio.h> #include <stdio.h>
#include "common/crypto/Algorithm.h" #include "crypto/common/Algorithm.h"
#ifdef _MSC_VER #ifdef _MSC_VER