forked from jacklevin74/xenminer
-
Notifications
You must be signed in to change notification settings - Fork 101
/
CMakeLists.txt
155 lines (140 loc) · 4.5 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
cmake_minimum_required(VERSION 3.7)
project(argon2-gpu CXX)
set(BINARY_INSTALL_DIR /usr/local/bin)
set(LIBRARY_INSTALL_DIR /usr/local/lib)
set(INCLUDE_INSTALL_DIR /usr/local/include)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR})
if(MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++11")
endif()
if(WIN32)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/lib)
include(GNUInstallDirs)
endif()
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING "Build type" FORCE)
endif()
set(CUDA_ARCH "sm_75" CACHE STRING "Specify the CUDA architecture.")
set(CUDA_FOUND FALSE)
if(NOT NO_CUDA)
find_package(CUDA)
endif()
if(CUDA_FOUND)
message("INFO: Using CUDA version ${CUDA_VERSION}")
add_definitions(-DHAVE_CUDA=1)
else()
message("FATAL_ERROR: Building without CUDA support")
add_definitions(-DHAVE_CUDA=0)
endif()
if(CUDA_FOUND)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};
-std=c++11;-O3;--ptxas-options=-v;-arch ${CUDA_ARCH};-lineinfo
)
endif()
add_subdirectory(gpuMiner/ext/argon2)
add_library(argon2-gpu-common SHARED
gpuMiner/lib/argon2-gpu-common/argon2params.cpp
gpuMiner/lib/argon2-gpu-common/blake2b.cpp
)
target_include_directories(argon2-gpu-common INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/gpuMiner/include>
$<INSTALL_INTERFACE:include>
)
target_include_directories(argon2-gpu-common PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/gpuMiner/include/argon2-gpu-common
${CMAKE_CURRENT_SOURCE_DIR}/gpuMiner/lib/argon2-gpu-common
)
if(CUDA_FOUND)
cuda_add_library(argon2-cuda SHARED
gpuMiner/lib/argon2-cuda/cudaexception.cpp
gpuMiner/lib/argon2-cuda/device.cpp
gpuMiner/lib/argon2-cuda/globalcontext.cpp
gpuMiner/lib/argon2-cuda/programcontext.cpp
gpuMiner/lib/argon2-cuda/processingunit.cpp
gpuMiner/lib/argon2-cuda/kernelrunner.cu
)
else()
add_library(argon2-cuda SHARED
gpuMiner/lib/argon2-cuda/nocuda.cpp
)
endif()
target_include_directories(argon2-cuda PRIVATE
gpuMiner/include/argon2-cuda
gpuMiner/lib/argon2-cuda
)
target_include_directories(argon2-cuda INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/gpuMiner/include>
$<INSTALL_INTERFACE:include>
)
target_link_libraries(argon2-cuda argon2-gpu-common)
add_library(argon2-opencl SHARED
gpuMiner/lib/argon2-opencl/device.cpp
gpuMiner/lib/argon2-opencl/globalcontext.cpp
gpuMiner/lib/argon2-opencl/kernelloader.cpp
gpuMiner/lib/argon2-opencl/programcontext.cpp
gpuMiner/lib/argon2-opencl/processingunit.cpp
gpuMiner/lib/argon2-opencl/kernelrunner.cpp
)
target_include_directories(argon2-opencl INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/gpuMiner/include>
$<INSTALL_INTERFACE:include>
)
target_include_directories(argon2-opencl PRIVATE
gpuMiner/include/argon2-opencl
gpuMiner/lib/argon2-opencl
)
if (UNIX AND NOT APPLE)
target_link_libraries(argon2-opencl
argon2-gpu-common -lOpenCL
)
endif()
if (APPLE)
target_link_libraries(argon2-opencl
argon2-gpu-common "-framework OpenCL"
)
endif()
if (WIN32)
target_link_libraries(argon2-opencl
argon2-gpu-common OpenCL.lib
)
endif()
add_executable(xengpuminer
gpuMiner/src/argon2-gpu-bench/cpuexecutive.cpp
gpuMiner/src/argon2-gpu-bench/cudaexecutive.cpp
gpuMiner/src/argon2-gpu-bench/openclexecutive.cpp
gpuMiner/src/argon2-gpu-bench/benchmark.cpp
gpuMiner/src/argon2-gpu-bench/main.cpp
)
target_include_directories(xengpuminer PRIVATE gpuMiner/src/argon2-gpu-bench)
target_link_libraries(xengpuminer
argon2-cuda argon2-opencl argon2 -lOpenCL
)
install(
TARGETS argon2-gpu-common argon2-opencl argon2-cuda
DESTINATION ${LIBRARY_INSTALL_DIR}
)
install(FILES
gpuMiner/include/argon2-gpu-common/argon2-common.h
gpuMiner/include/argon2-gpu-common/argon2params.h
gpuMiner/include/argon2-opencl/cl.hpp
gpuMiner/include/argon2-opencl/opencl.h
gpuMiner/include/argon2-opencl/device.h
gpuMiner/include/argon2-opencl/globalcontext.h
gpuMiner/include/argon2-opencl/programcontext.h
gpuMiner/include/argon2-opencl/processingunit.h
gpuMiner/include/argon2-opencl/kernelrunner.h
gpuMiner/include/argon2-cuda/cudaexception.h
gpuMiner/include/argon2-cuda/kernelrunner.h
gpuMiner/include/argon2-cuda/device.h
gpuMiner/include/argon2-cuda/globalcontext.h
gpuMiner/include/argon2-cuda/programcontext.h
gpuMiner/include/argon2-cuda/processingunit.h
DESTINATION ${INCLUDE_INSTALL_DIR}
)
install(
TARGETS xengpuminer
DESTINATION ${BINARY_INSTALL_DIR}
)