From c76114faced828e203a523cbfd9ad2768ad46905 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 6 Apr 2020 08:41:30 +0200 Subject: [PATCH] android: libz dependency --- hyperroid/app/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hyperroid/app/CMakeLists.txt b/hyperroid/app/CMakeLists.txt index 02593feb..f65772a6 100644 --- a/hyperroid/app/CMakeLists.txt +++ b/hyperroid/app/CMakeLists.txt @@ -36,12 +36,15 @@ find_library( # Sets the name of the path variable. # you want CMake to locate. log ) +find_library(libz z) + # Specifies libraries CMake should link to your target library. You # can link multiple libraries, such as libraries you define in the # build script, prebuilt third-party libraries, or system libraries. target_link_libraries( # Specifies the target library. hyper + ${libz} # Links the target library to the log library # included in the NDK.