mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
335 B
14 lines
335 B
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)
|
|
|