10 lines
355 B
CMake
10 lines
355 B
CMake
|
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 "")
|