2
0

CMakeLists.txt 487 B

12345678910111213141516
  1. cmake_minimum_required(VERSION 3.10)
  2. include_directories(./)
  3. include_directories(./../../)
  4. add_library( # Defines the name of the library.
  5. android_jniiosystem
  6. # Implements a static library.
  7. STATIC
  8. # relative path to source file(s).
  9. AndroidJNIIOSystem.cpp
  10. BundledAssetIOSystem.cpp
  11. )
  12. TARGET_LINK_LIBRARIES(android_jniiosystem android log)
  13. INSTALL(TARGETS android_jniiosystem EXPORT "${TARGETS_EXPORT_NAME}")