2021-01-29 20:05:46 +00:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
2014-10-07 14:23:56 +00:00
|
|
|
|
|
|
|
include_directories(./)
|
|
|
|
include_directories(./../../)
|
2021-02-02 07:33:55 +00:00
|
|
|
add_library( # Defines the name of the library.
|
2021-07-29 11:28:51 +00:00
|
|
|
android_jniiosystem
|
2021-02-02 07:33:55 +00:00
|
|
|
|
2021-02-02 07:44:57 +00:00
|
|
|
# Implements a static library.
|
2021-07-29 11:28:51 +00:00
|
|
|
STATIC
|
2021-02-02 07:33:55 +00:00
|
|
|
|
|
|
|
# relative path to source file(s).
|
|
|
|
AndroidJNIIOSystem.cpp
|
|
|
|
BundledAssetIOSystem.cpp
|
|
|
|
)
|
2014-10-07 14:23:56 +00:00
|
|
|
TARGET_LINK_LIBRARIES(android_jniiosystem android log)
|
2021-02-18 07:16:22 +00:00
|
|
|
INSTALL(TARGETS android_jniiosystem EXPORT "${TARGETS_EXPORT_NAME}")
|