mirror of https://gitee.com/bigwinds/arangodb
we mustn't deliver curl build results with our packages (#4506)
This commit is contained in:
parent
2d55e99b80
commit
97e2a9d968
|
@ -193,7 +193,7 @@ set(CMAKE_USE_LIBSSH2 OFF CACHE type BOOL)
|
|||
set(CMAKE_USE_OPENSSL ON CACHE type BOOL)
|
||||
# mop: super important...if this is off curl will not handle request timeouts < 1000ms
|
||||
set(ENABLE_THREADED_RESOLVER ON CACHE type BOOL)
|
||||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/curl/curl-7.57.0)
|
||||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/curl/curl-7.57.0 EXCLUDE_FROM_ALL)
|
||||
|
||||
################################################################################
|
||||
## SNAPPY
|
||||
|
|
|
@ -246,7 +246,13 @@ else()
|
|||
ADD_LIBRARY(stemmer-shared SHARED ${SNOWBALL_RUNTIME} ${STEMMER_SOURCES})
|
||||
endif()
|
||||
|
||||
ADD_LIBRARY(stemmer-static STATIC ${SNOWBALL_RUNTIME} ${STEMMER_SOURCES})
|
||||
ADD_LIBRARY(stemmer-static STATIC
|
||||
${SNOWBALL_RUNTIME}
|
||||
${STEMMER_SOURCES})
|
||||
|
||||
set(LIBSTEMMER_H_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
||||
set_target_properties(stemmer-static PROPERTIES
|
||||
INTERFACE_INCLUDE_DIRECTORIES "${LIBSTEMMER_H_DIR}")
|
||||
|
||||
ADD_DEPENDENCIES(stemmer-shared stemmer_deps)
|
||||
ADD_DEPENDENCIES(stemmer-static stemmer_deps)
|
||||
|
|
Loading…
Reference in New Issue