1
0
Fork 0

we mustn't deliver curl build results with our packages (#4506)

This commit is contained in:
Wilfried Goesgens 2018-02-06 15:44:50 +01:00 committed by Jan
parent 2d55e99b80
commit 97e2a9d968
2 changed files with 8 additions and 2 deletions

View File

@ -193,7 +193,7 @@ set(CMAKE_USE_LIBSSH2 OFF CACHE type BOOL)
set(CMAKE_USE_OPENSSL ON 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 # mop: super important...if this is off curl will not handle request timeouts < 1000ms
set(ENABLE_THREADED_RESOLVER ON CACHE type BOOL) 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 ## SNAPPY

View File

@ -246,7 +246,13 @@ else()
ADD_LIBRARY(stemmer-shared SHARED ${SNOWBALL_RUNTIME} ${STEMMER_SOURCES}) ADD_LIBRARY(stemmer-shared SHARED ${SNOWBALL_RUNTIME} ${STEMMER_SOURCES})
endif() 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-shared stemmer_deps)
ADD_DEPENDENCIES(stemmer-static stemmer_deps) ADD_DEPENDENCIES(stemmer-static stemmer_deps)