aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/ethereum/ethash/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/ethereum/ethash/CMakeLists.txt')
-rw-r--r--vendor/github.com/ethereum/ethash/CMakeLists.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/github.com/ethereum/ethash/CMakeLists.txt b/vendor/github.com/ethereum/ethash/CMakeLists.txt
new file mode 100644
index 000000000..807c43e96
--- /dev/null
+++ b/vendor/github.com/ethereum/ethash/CMakeLists.txt
@@ -0,0 +1,14 @@
+cmake_minimum_required(VERSION 2.8.7)
+project(ethash)
+
+set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/modules/")
+set(ETHHASH_LIBS ethash)
+
+if (WIN32 AND WANT_CRYPTOPP)
+ add_subdirectory(cryptopp)
+endif()
+
+add_subdirectory(src/libethash)
+
+add_subdirectory(src/benchmark EXCLUDE_FROM_ALL)
+add_subdirectory(test/c)