Official Go implementation of the Ethereum protocol
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.
go-ethereum/vendor/github.com/ethereum/ethash/CMakeLists.txt

15 lines
335 B

cmake_minimum_required(VERSION 2.8.7)
project(ethash)
10 years ago
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)
10 years ago
add_subdirectory(src/benchmark EXCLUDE_FROM_ALL)
10 years ago
add_subdirectory(test/c)