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.

23 lines
455 B

cmake_policy(SET CMP0015 NEW)
file(GLOB SRC_LIST "*.cpp")
10 years ago
include_directories(BEFORE ..)
include_directories(${Boost_INCLUDE_DIRS})
if (ETHASHCUDA)
10 years ago
include_directories(${CUDA_INCLUDE_DIRS})
endif ()
file(GLOB HEADERS "*.h")
add_library(ethcore ${SRC_LIST} ${HEADERS})
target_link_libraries(ethcore ethash pthread)
10 years ago
if (ETHASHCL)
target_link_libraries(ethcore ethash-cl)
10 years ago
endif ()
if (ETHASHCUDA)
target_link_libraries(ethcore ethash-cuda)
endif ()