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.
18 lines
386 B
18 lines
386 B
file(GLOB SOURCES "*.cpp")
|
|
file(GLOB HEADERS "*.h")
|
|
|
|
include_directories(BEFORE ..)
|
|
|
|
if (ETHASHCUDA)
|
|
include_directories(${CUDA_INCLUDE_DIRS})
|
|
endif ()
|
|
|
|
add_library(ethcore ${SOURCES} ${HEADERS})
|
|
target_link_libraries(ethcore ethash devcore pthread)
|
|
|
|
if (ETHASHCL)
|
|
target_link_libraries(ethcore ethash-cl)
|
|
endif ()
|
|
if (ETHASHCUDA)
|
|
target_link_libraries(ethcore ethash-cuda)
|
|
endif ()
|
|
|