aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/ethash/libethash/CMakeLists.txt
blob: bef63ef0a1bef141adcadae70c869304959779cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
set(LIBRARY ethash)
set(CMAKE_BUILD_TYPE Release)

if (NOT MSVC)
    set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
endif()

set(FILES   util.c
            util.h
            internal.c
            ethash.h
            endian.h
            compiler.h
            fnv.h
            data_sizes.h)

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()