aboutsummaryrefslogtreecommitdiff
path: root/lib/cmake/llvm/GetLibraryName.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'lib/cmake/llvm/GetLibraryName.cmake')
-rw-r--r--lib/cmake/llvm/GetLibraryName.cmake17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/cmake/llvm/GetLibraryName.cmake b/lib/cmake/llvm/GetLibraryName.cmake
new file mode 100644
index 0000000..13c0080
--- /dev/null
+++ b/lib/cmake/llvm/GetLibraryName.cmake
@@ -0,0 +1,17 @@
+# Returns library name for a given path.
+function(get_library_name path name)
+ get_filename_component(path ${path} NAME)
+ set(prefixes ${CMAKE_FIND_LIBRARY_PREFIXES})
+ set(suffixes ${CMAKE_FIND_LIBRARY_SUFFIXES})
+ list(FILTER prefixes EXCLUDE REGEX "^\\s*$")
+ list(FILTER suffixes EXCLUDE REGEX "^\\s*$")
+ if(prefixes)
+ string(REPLACE ";" "|" prefixes "${prefixes}")
+ string(REGEX REPLACE "^(${prefixes})" "" path ${path})
+ endif()
+ if(suffixes)
+ string(REPLACE ";" "|" suffixes "${suffixes}")
+ string(REGEX REPLACE "(${suffixes})$" "" path ${path})
+ endif()
+ set(${name} "${path}" PARENT_SCOPE)
+endfunction()