diff options
Diffstat (limited to 'llvm/cmake/modules/LLVM.cmake')
-rw-r--r-- | llvm/cmake/modules/LLVM.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/cmake/modules/LLVM.cmake b/llvm/cmake/modules/LLVM.cmake index 4efc7455066..d610f3e7651 100644 --- a/llvm/cmake/modules/LLVM.cmake +++ b/llvm/cmake/modules/LLVM.cmake @@ -1,5 +1,7 @@ # This file provides information and services to the final user. +set(LLVM_PACKAGE_VERSION @PACKAGE_VERSION@) + set(LLVM_COMMON_DEPENDS @LLVM_COMMON_DEPENDS@) set(llvm_libs @llvm_libs@) @@ -16,6 +18,13 @@ set(LLVM_ENABLE_THREADS @LLVM_ENABLE_THREADS@) set(LLVM_NATIVE_ARCH @LLVM_NATIVE_ARCH@) +set(LLVM_ENABLE_PIC @LLVM_ENABLE_PIC@) + +set(LLVM_ENABLE_THREADS @LLVM_ENABLE_THREADS) + +set(HAVE_LIBDL @HAVE_LIBDL@) +set(HAVE_LIBPTHREAD @HAVE_LIBPTHREAD) + # We try to include using the current setting of CMAKE_MODULE_PATH, # which suppossedly was filled by the user with the directory where # this file was installed: |