llvm-6502/cmake/modules/CMakeLists.txt
Oscar Fuentes 6252e98709 CMake: system for providing llvm-config-like features to the user.
The user can use a cmake function for obtaining the LLVM libraries
corresponding to a list of LLVM components.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110560 91177308-0d34-0410-b5e6-96231b3b80d8
2010-08-09 03:26:43 +00:00

12 lines
252 B
CMake

set(llvm_cmake_builddir "${LLVM_BINARY_DIR}/share/llvm/cmake")
configure_file(
LLVM.cmake
${llvm_cmake_builddir}/LLVM.cmake)
install(FILES
${llvm_cmake_builddir}/LLVM.cmake
LLVMConfig.cmake
LLVMLibDeps.cmake
DESTINATION share/llvm/cmake)