aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/ethereum/ethash/libethash-cl/CMakeLists.txt
blob: 19d2fecbf4af021515d9b005dc832a53cf637dc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
set(LIBRARY ethash-cl)
set(CMAKE_BUILD_TYPE Release)

if (NOT OPENCL_FOUND)
    find_package(OpenCL)
endif()
if (OPENCL_FOUND)
    include_directories(${OPENCL_INCLUDE_DIRS})
    include_directories(..)
    add_library(${LIBRARY} ethash_cl_miner.cpp ethash_cl_miner.h)
    TARGET_LINK_LIBRARIES(${LIBRARY} ${OPENCL_LIBRARIES} ethash)
endif()