Skip to content

Commit

Permalink
Merge d0a506b into 4e8882d
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasVautherin committed Feb 24, 2019
2 parents 4e8882d + d0a506b commit ada3013
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion backend/cmake/third_party/boringssl/CMakeLists.txt
Expand Up @@ -5,7 +5,7 @@ project(external-boringssl)
include(ExternalProject)

set(ARG_GIT_REPOSITORY https://github.com/google/boringssl.git)
set(ARG_GIT_TAG 38c20fe8d514a5328f5db404e116af8e9136c7f8)
set(ARG_GIT_TAG 98ad4d77e372919980ae6cbcd19e928b8f80ce47)

if(ANDROID)
message(STATUS "Preparing external project \"boringssl\" for Android...")
Expand Down
2 changes: 1 addition & 1 deletion backend/cmake/third_party/cares/CMakeLists.txt
Expand Up @@ -5,7 +5,7 @@ project(external-cares)
include(ExternalProject)

set(ARG_GIT_REPOSITORY https://github.com/c-ares/c-ares.git)
set(ARG_GIT_TAG cares-1_13_0)
set(ARG_GIT_TAG cares-1_15_0)

if(ANDROID)
message(STATUS "Preparing external project \"c-ares\" for Android...")
Expand Down
2 changes: 1 addition & 1 deletion backend/cmake/third_party/grpc/CMakeLists.txt
Expand Up @@ -5,7 +5,7 @@ project(external-grpc)
include(ExternalProject)

set(ARG_GIT_REPOSITORY https://github.com/dronecore/grpc.git)
set(ARG_GIT_TAG enable-android-ios-build)
set(ARG_GIT_TAG 16856-fix-codegen-off-install)

# This answer probably saved me from destroying my computer:
# https://stackoverflow.com/questions/45414507/pass-a-list-of-prefix-paths-to-externalproject-add-in-cmake-args
Expand Down
2 changes: 1 addition & 1 deletion backend/cmake/third_party/protobuf/CMakeLists.txt
Expand Up @@ -5,7 +5,7 @@ project(external-protobuf)
include(ExternalProject)

set(ARG_GIT_REPOSITORY https://github.com/google/protobuf.git)
set(ARG_GIT_TAG ab95b1bc1eb964ee5f1fb48297344c5d37d35191)
set(ARG_GIT_TAG v3.6.1)

if(ANDROID)
message(STATUS "Preparing external project \"protobuf\" for Android...")
Expand Down
6 changes: 3 additions & 3 deletions cmake/zlib.cmake
Expand Up @@ -5,10 +5,10 @@ set(SKIP_INSTALL_ALL "true")
include_directories("${ZLIB_ROOT_DIR}")
add_subdirectory(${ZLIB_ROOT_DIR} third_party/zlib)

if(NOT ANDROID AND NOT IOS)
set_property(TARGET zlibstatic PROPERTY POSITION_INDEPENDENT_CODE ON)
else()
if(IOS)
set_property(TARGET zlibstatic PROPERTY POSITION_INDEPENDENT_CODE OFF)
else()
set_property(TARGET zlibstatic PROPERTY POSITION_INDEPENDENT_CODE ON)
endif()

set(DRONECORE_ZLIB_LIBRARIES zlibstatic)
Expand Down

0 comments on commit ada3013

Please sign in to comment.