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.
33 lines
1.0 KiB
33 lines
1.0 KiB
cmake_policy(SET CMP0015 NEW)
|
|
# this policy was introduced in cmake 3.0
|
|
# remove if, once 3.0 will be used on unix
|
|
if (${CMAKE_MAJOR_VERSION} GREATER 2)
|
|
# old policy do not use MACOSX_RPATH
|
|
cmake_policy(SET CMP0042 OLD)
|
|
endif()
|
|
set(CMAKE_AUTOMOC OFF)
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
include_directories(BEFORE ..)
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
include_directories(${CRYPTOPP_INCLUDE_DIRS})
|
|
include_directories(${LEVELDB_INCLUDE_DIRS})
|
|
|
|
set(EXECUTABLE devcrypto)
|
|
|
|
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} ${Boost_FILESYSTEM_LIBRARIES})
|
|
target_link_libraries(${EXECUTABLE} ${LEVELDB_LIBRARIES})
|
|
target_link_libraries(${EXECUTABLE} ${CRYPTOPP_LIBRARIES})
|
|
target_link_libraries(${EXECUTABLE} devcore)
|
|
|
|
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|
|
|