Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/set_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ def create_toolchain(
out += f"""\
set(CMAKE_SYSTEM_NAME "Android")
set(CMAKE_SYSTEM_VERSION "{android_api}") # API level
set(ANDROID_PLATFORM "android-{android_api}") # API level
set(CMAKE_ANDROID_ARCH_ABI "{android_arch_abi}")
set(ANDROID_ABI "{android_arch_abi}")
set(CMAKE_ANDROID_NDK "$ENV{{ANDROID_NDK}}") # provided by GitHub

string(COMPARE EQUAL "${{CMAKE_ANDROID_NDK}}" "" _is_empty)
Expand All @@ -95,6 +97,7 @@ def create_toolchain(
# for android if we have libcxx in toolchain assume static runtime
out += f"""\
set(CMAKE_ANDROID_STL_TYPE "c++_static") # LLVM libc++ static
set(ANDROID_STL "c++_static")
"""

m = re.match(r"^osx-(\d+)-(\d+)", parsed_toolchain)
Expand Down
1 change: 1 addition & 0 deletions cmake/projects/OpenSSL/hunter.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -795,3 +795,4 @@ endif()

hunter_cacheable(OpenSSL)
hunter_download(PACKAGE_NAME OpenSSL PACKAGE_INTERNAL_DEPS_ID "29")

Loading