Android.cmake 355 B

123456789
  1. include(Platform/Linux)
  2. # Android has soname, but binary names must end in ".so" so we cannot append
  3. # a version number. Also we cannot portably represent symlinks on the host.
  4. set(CMAKE_PLATFORM_NO_VERSIONED_SONAME 1)
  5. # Android reportedly ignores RPATH, and we cannot predict the install
  6. # location anyway.
  7. set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "")