aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/CMakeLists.txt')
-rw-r--r--Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/CMakeLists.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/CMakeLists.txt b/Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/CMakeLists.txt
new file mode 100644
index 000000000..b30ed3e2d
--- /dev/null
+++ b/Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cuda/CMakeLists.txt
@@ -0,0 +1,15 @@
+find_package(CUDA)
+
+# Pass options to NVCC
+
+
+if (CUDA_FOUND)
+set(CUDA_NVCC_FLAGS " -gencode;arch=compute_30,code=sm_30;
+ -gencode;arch=compute_20,code=sm_20;
+ -gencode;arch=compute_11,code=sm_11;
+ -gencode;arch=compute_12,code=sm_12;
+ -gencode;arch=compute_13,code=sm_13;")
+cuda_add_executable(
+ ethash-cuda
+ libethash.cu)
+endif() \ No newline at end of file