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.
37 lines
1018 B
37 lines
1018 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(BEFORE ..)
|
|
# we may not use it in libp2p, but one of our dependecies is including leveldb in header file
|
|
# and windows is failing to build without that
|
|
include_directories(${DB_INCLUDE_DIRS})
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
|
|
if (MINIUPNPC_FOUND)
|
|
include_directories(${MINIUPNPC_INCLUDE_DIRS})
|
|
endif()
|
|
|
|
set(EXECUTABLE p2p)
|
|
|
|
file(GLOB HEADERS "*.h")
|
|
|
|
add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS})
|
|
|
|
if (MINIUPNPC_FOUND)
|
|
target_link_libraries(${EXECUTABLE} ${MINIUPNPC_LIBRARIES})
|
|
endif()
|
|
|
|
target_link_libraries(${EXECUTABLE} devcrypto)
|
|
target_link_libraries(${EXECUTABLE} devcore)
|
|
|
|
if (CMAKE_COMPILER_IS_MINGW)
|
|
target_link_libraries(${EXECUTABLE} ws2_32 mswsock)
|
|
endif()
|
|
|
|
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|
|
|