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.
29 lines
701 B
29 lines
701 B
cmake_policy(SET CMP0015 NEW)
|
|
set(CMAKE_AUTOMOC OFF)
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
include_directories(BEFORE ..)
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
|
|
if (ETHASHCUDA)
|
|
include_directories(${CUDA_INCLUDE_DIRS})
|
|
endif ()
|
|
|
|
set(EXECUTABLE ethcore)
|
|
|
|
file(GLOB HEADERS "*.h")
|
|
|
|
add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS})
|
|
|
|
target_link_libraries(${EXECUTABLE} ethash pthread)
|
|
|
|
if (ETHASHCL)
|
|
target_link_libraries(${EXECUTABLE} ethash-cl)
|
|
endif ()
|
|
if (ETHASHCUDA)
|
|
target_link_libraries(${EXECUTABLE} ethash-cuda)
|
|
endif ()
|
|
|
|
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|