aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/ethereum/ethash/src/libethash/CMakeLists.txt
blob: a65621c3e9e66b81a8f0a8a9848243a66cc5903d (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
34
35
36
37
38
39
40
41
42
43
44
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.h
            io.c
            internal.c
            ethash.h
            endian.h
            compiler.h
            fnv.h
            data_sizes.h)

if (MSVC)
    list(APPEND FILES util_win32.c io_win32.c mmap_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()