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.
34 lines
919 B
34 lines
919 B
cmake_policy(SET CMP0015 NEW)
|
|
set(CMAKE_AUTOMOC OFF)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DSTATICLIB")
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
include_directories(..)
|
|
|
|
set(EXECUTABLE ethereumx)
|
|
|
|
file(GLOB HEADERS "*.h")
|
|
|
|
if (ETH_STATIC)
|
|
add_library(${EXECUTABLE} STATIC ${SRC_LIST} ${HEADERS})
|
|
else()
|
|
add_library(${EXECUTABLE} SHARED ${SRC_LIST} ${HEADERS})
|
|
endif()
|
|
|
|
target_link_libraries(${EXECUTABLE} ${LEVELDB_LS})
|
|
target_link_libraries(${EXECUTABLE} ${CRYPTOPP_LS})
|
|
|
|
if (MINIUPNPC_LS)
|
|
target_link_libraries(${EXECUTABLE} ${MINIUPNPC_LS})
|
|
endif()
|
|
|
|
target_link_libraries(${EXECUTABLE} ethereum)
|
|
target_link_libraries(${EXECUTABLE} evm)
|
|
target_link_libraries(${EXECUTABLE} lll)
|
|
target_link_libraries(${EXECUTABLE} ethcore)
|
|
target_link_libraries(${EXECUTABLE} secp256k1)
|
|
|
|
install( TARGETS ${EXECUTABLE} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|
|
|