From 2fd66664774d2d10132d1ce7a5a81e3769af87d2 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 17 Feb 2021 23:16:22 -0800 Subject: [PATCH] Update CMakeLists.txt Add android_jniiosystem to export set, for cmake to find and link with --- port/AndroidJNI/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/port/AndroidJNI/CMakeLists.txt b/port/AndroidJNI/CMakeLists.txt index b722b794a..43e842848 100644 --- a/port/AndroidJNI/CMakeLists.txt +++ b/port/AndroidJNI/CMakeLists.txt @@ -13,3 +13,4 @@ add_library( # Defines the name of the library. BundledAssetIOSystem.cpp ) TARGET_LINK_LIBRARIES(android_jniiosystem android log) +INSTALL(TARGETS android_jniiosystem EXPORT "${TARGETS_EXPORT_NAME}")