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.
49 lines
984 B
49 lines
984 B
set(LIBRARY ethash)
|
|
|
|
if (CPPETHEREUM)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
|
|
endif ()
|
|
|
|
set(CMAKE_BUILD_TYPE Release)
|
|
|
|
if (NOT MSVC)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
|
|
endif()
|
|
|
|
set(FILES util.c
|
|
util.h
|
|
io.c
|
|
internal.c
|
|
ethash.h
|
|
endian.h
|
|
compiler.h
|
|
fnv.h
|
|
data_sizes.h)
|
|
|
|
if (MSVC)
|
|
list(APPEND FILES io_win32.c)
|
|
else()
|
|
list(APPEND FILES io_posix.c)
|
|
endif()
|
|
|
|
if (NOT CRYPTOPP_FOUND)
|
|
find_package(CryptoPP 5.6.2)
|
|
endif()
|
|
|
|
if (CRYPTOPP_FOUND)
|
|
add_definitions(-DWITH_CRYPTOPP)
|
|
include_directories( ${CRYPTOPP_INCLUDE_DIRS} )
|
|
list(APPEND FILES sha3_cryptopp.cpp sha3_cryptopp.h)
|
|
else()
|
|
list(APPEND FILES sha3.c sha3.h)
|
|
endif()
|
|
|
|
add_library(${LIBRARY} ${FILES})
|
|
|
|
if (CRYPTOPP_FOUND)
|
|
TARGET_LINK_LIBRARIES(${LIBRARY} ${CRYPTOPP_LIBRARIES})
|
|
endif()
|
|
|
|
if (NOT ETHASHCL)
|
|
install( TARGETS ${LIBRARY} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
endif ()
|
|
|