redo FindUnbound.cmake
This commit is contained in:
parent
71f4b10b15
commit
bff1f9d4c4
|
@ -85,7 +85,9 @@ if (UNIX AND NOT APPLE)
|
||||||
find_package(Threads)
|
find_package(Threads)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# Find unbound - don't move this to the end, cmake is weird about this
|
||||||
find_package(Unbound REQUIRED)
|
find_package(Unbound REQUIRED)
|
||||||
|
include_directories(${UNBOUND_INCLUDE})
|
||||||
|
|
||||||
if(MSVC)
|
if(MSVC)
|
||||||
add_definitions("/bigobj /MP /W3 /GS- /D_CRT_SECURE_NO_WARNINGS /wd4996 /wd4345 /D_WIN32_WINNT=0x0600 /DWIN32_LEAN_AND_MEAN /DGTEST_HAS_TR1_TUPLE=0 /FIinline_c.h /D__SSE4_1__")
|
add_definitions("/bigobj /MP /W3 /GS- /D_CRT_SECURE_NO_WARNINGS /wd4996 /wd4345 /D_WIN32_WINNT=0x0600 /DWIN32_LEAN_AND_MEAN /DGTEST_HAS_TR1_TUPLE=0 /FIinline_c.h /D__SSE4_1__")
|
||||||
|
@ -210,5 +212,7 @@ else()
|
||||||
include_directories(${UPNP_INCLUDE})
|
include_directories(${UPNP_INCLUDE})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
add_subdirectory(tests)
|
add_subdirectory(tests)
|
||||||
|
|
|
@ -25,31 +25,29 @@
|
||||||
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
||||||
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
include (CheckIncludeFiles)
|
MESSAGE("Looking for libunbound")
|
||||||
include (CheckLibraryExists)
|
|
||||||
include (CheckSymbolExists)
|
|
||||||
|
|
||||||
set (Unbound_FOUND FALSE)
|
FIND_PATH(UNBOUND_INCLUDE_DIR
|
||||||
MESSAGE("Attempting to find libunbound")
|
NAMES unbound.h
|
||||||
|
PATH_SUFFIXES include/ include/unbound/
|
||||||
|
PATHS "${PROJECT_SOURCE_DIR}"
|
||||||
|
${UNBOUND_ROOT}
|
||||||
|
$ENV{UNBOUND_ROOT}
|
||||||
|
/usr/local/
|
||||||
|
/usr/
|
||||||
|
)
|
||||||
|
|
||||||
#FIND_PATH("unbound.h" CMAKE_HAVE_UNBOUND_H)
|
find_library(UNBOUND_LIBRARIES unbound)
|
||||||
MESSAGE("CMAKE_INCLUDE_PATH: ${CMAKE_INCLUDE_PATH}")
|
|
||||||
MESSAGE("CMAKE_SYSTEM_INCLUDE_PATH: ${CMAKE_SYSTEM_INCLUDE_PATH}")
|
|
||||||
CHECK_INCLUDE_FILES("unbound.h" CMAKE_HAVE_UNBOUND_H)
|
|
||||||
MESSAGE("CMAKE_HAVE_UNBOUND_H: ${CMAKE_HAVE_UNBOUND_H}")
|
|
||||||
|
|
||||||
if(CMAKE_HAVE_UNBOUND_H)
|
IF(UNBOUND_INCLUDE_DIR)
|
||||||
|
MESSAGE(STATUS "Found unbound include in ${UNBOUND_INCLUDE_DIR}")
|
||||||
MESSAGE("unbound.h found")
|
IF(UNBOUND_LIBRARIES)
|
||||||
|
MESSAGE(STATUS "Found unbound library")
|
||||||
CHECK_LIBRARY_EXISTS(unbound ub_ctx_create "" CMAKE_HAVE_UNBOUND)
|
set(UNBOUND_INCLUDE ${UNBOUND_INCLUDE_DIR})
|
||||||
|
set(UNBOUND_LIBRARY ${UNBOUND_LIBRARIES})
|
||||||
if(CMAKE_HAVE_UNBOUND)
|
ELSE()
|
||||||
MESSAGE("-lunbound works?")
|
MESSAGE(FATAL_ERROR "Could not find unbound library")
|
||||||
set(CMAKE_UNBOUND_LIB "-lunbound")
|
ENDIF()
|
||||||
set(Unbound_FOUND TRUE)
|
ELSE()
|
||||||
endif()
|
MESSAGE(FATAL_ERROR "Could not find unbound library")
|
||||||
endif()
|
ENDIF()
|
||||||
|
|
||||||
include(FindPackageHandleStandardArgs)
|
|
||||||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Unbound DEFAULT_MSG Unbound_FOUND)
|
|
||||||
|
|
|
@ -60,13 +60,13 @@ add_library(cryptonote_core ${CRYPTONOTE_CORE})
|
||||||
add_executable(daemon ${DAEMON} ${P2P} ${CRYPTONOTE_PROTOCOL})
|
add_executable(daemon ${DAEMON} ${P2P} ${CRYPTONOTE_PROTOCOL})
|
||||||
add_executable(connectivity_tool ${CONN_TOOL})
|
add_executable(connectivity_tool ${CONN_TOOL})
|
||||||
add_executable(simpleminer ${MINER})
|
add_executable(simpleminer ${MINER})
|
||||||
target_link_libraries(daemon rpc cryptonote_core crypto common ${UPNP_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES} ${CMAKE_UNBOUND_LIB})
|
target_link_libraries(daemon rpc cryptonote_core crypto common ${UNBOUND_LIBRARIES} ${UPNP_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
|
||||||
target_link_libraries(connectivity_tool cryptonote_core crypto common ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES} ${CMAKE_UNBOUND_LIB})
|
target_link_libraries(connectivity_tool cryptonote_core crypto common ${UNBOUND_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
|
||||||
target_link_libraries(simpleminer cryptonote_core crypto common ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES} ${CMAKE_UNBOUND_LIB})
|
target_link_libraries(simpleminer cryptonote_core crypto common ${UNBOUND_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
|
||||||
add_library(rpc ${RPC})
|
add_library(rpc ${RPC})
|
||||||
add_library(wallet ${WALLET})
|
add_library(wallet ${WALLET})
|
||||||
add_executable(simplewallet ${SIMPLEWALLET} )
|
add_executable(simplewallet ${SIMPLEWALLET} )
|
||||||
target_link_libraries(simplewallet wallet rpc cryptonote_core crypto common ${UPNP_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES} ${CMAKE_UNBOUND_LIB})
|
target_link_libraries(simplewallet wallet rpc cryptonote_core crypto common ${UNBOUND_LIBRARIES} ${UPNP_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${Boost_LIBRARIES})
|
||||||
add_dependencies(daemon version)
|
add_dependencies(daemon version)
|
||||||
add_dependencies(rpc version)
|
add_dependencies(rpc version)
|
||||||
add_dependencies(simplewallet version)
|
add_dependencies(simplewallet version)
|
||||||
|
|
Loading…
Reference in New Issue