Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
refs/heads/release
/
.
/
Tests
/
SharedLibraryArchive
/
nosla-check.cmake
blob: de4f072b41cc8af25c2abd800cb1c364b9c5277c [
file
] [
log
] [
blame
] [
edit
]
if
(
CMAKE_SYSTEM_NAME STREQUAL
"AIX"
)
set
(
nosla_regex
"/lib${name}\\.so$"
)
if
(
NOT nosla MATCHES
"${nosla_regex}"
)
message
(
FATAL_ERROR
"nosla library does not look like a shared object:\n ${nosla}"
)
endif
()
endif
()