7 lines
240 B
CMake
7 lines
240 B
CMake
file(GLOB sources "*.cpp")
|
|
file(GLOB headers "*.h")
|
|
|
|
add_library(ethash-cpu ${sources} ${headers})
|
|
target_link_libraries(ethash-cpu ethcore ethash Boost::thread)
|
|
target_include_directories(ethash-cpu PRIVATE .. ${CMAKE_CURRENT_BINARY_DIR})
|