mirror of
https://github.com/kvazar-network/keva-stratum.git
synced 2025-01-26 23:04:42 +00:00
21 lines
612 B
CMake
21 lines
612 B
CMake
cmake_minimum_required (VERSION 2.8.11)
|
|
project(pool)
|
|
|
|
if (DEFINED ENV{MONERO_DIR})
|
|
get_filename_component(MONERO_DIR $ENV{MONERO_DIR} ABSOLUTE)
|
|
message("Using Monero source from env ${MONERO_DIR}")
|
|
else()
|
|
get_filename_component(MONERO_DIR "${CMAKE_SOURCE_DIR}/../monero" ABSOLUTE)
|
|
message("Monero surce directory is not defined, using default ${MONERO_DIR}")
|
|
endif()
|
|
|
|
add_subdirectory(hashing)
|
|
add_subdirectory(cnutil)
|
|
|
|
add_custom_command(
|
|
OUTPUT build/bin
|
|
COMMAND build/env.sh go get -v ./...
|
|
)
|
|
|
|
add_custom_target(build ALL DEPENDS hashing cnutil ${CMAKE_CURRENT_BINARY_DIR}/build/bin)
|