summaryrefslogtreecommitdiff
path: root/share/cmake-3.6/Modules/Platform/Android.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'share/cmake-3.6/Modules/Platform/Android.cmake')
-rw-r--r--share/cmake-3.6/Modules/Platform/Android.cmake15
1 files changed, 0 insertions, 15 deletions
diff --git a/share/cmake-3.6/Modules/Platform/Android.cmake b/share/cmake-3.6/Modules/Platform/Android.cmake
deleted file mode 100644
index 1bdad04..0000000
--- a/share/cmake-3.6/Modules/Platform/Android.cmake
+++ /dev/null
@@ -1,15 +0,0 @@
-include(Platform/Linux)
-
-# Android has soname, but binary names must end in ".so" so we cannot append
-# a version number. Also we cannot portably represent symlinks on the host.
-set(CMAKE_PLATFORM_NO_VERSIONED_SONAME 1)
-
-# Android reportedly ignores RPATH, and we cannot predict the install
-# location anyway.
-set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "")
-
-# Nsight Tegra Visual Studio Edition takes care of
-# prefixing library names with '-l'.
-if(CMAKE_VS_PLATFORM_NAME STREQUAL "Tegra-Android")
- set(CMAKE_LINK_LIBRARY_FLAG "")
-endif()