Rename LLVMConfig.cmake to LLVM-Config.cmake. The *Config.cmake naming

scheme is used by the functionality related to find_package.

llvm-svn: 128889
This commit is contained in:
Oscar Fuentes 2011-04-05 17:02:48 +00:00
parent 76ad3debab
commit d8a6dd6c99
5 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
include(LLVMProcessSources)
include(LLVMConfig)
include(LLVM-Config)
macro(add_llvm_library name)
llvm_process_sources( ALL_FILES ${ARGN} )

View File

@ -9,7 +9,7 @@ configure_file(
install(FILES
${llvm_cmake_builddir}/LLVM.cmake
LLVMConfig.cmake
LLVM-Config.cmake
LLVMLibDeps.cmake
DESTINATION share/llvm/cmake)
@ -18,7 +18,7 @@ install(DIRECTORY .
FILES_MATCHING PATTERN *.cmake
PATTERN .svn EXCLUDE
PATTERN LLVM.cmake EXCLUDE
PATTERN LLVMConfig.cmake EXCLUDE
PATTERN LLVM-Config.cmake EXCLUDE
PATTERN LLVMLibDeps.cmake EXCLUDE
PATTERN FindBison.cmake EXCLUDE
PATTERN GetTargetTriple.cmake EXCLUDE
@ -27,6 +27,6 @@ install(DIRECTORY .
install(FILES
${llvm_cmake_builddir}/LLVM.cmake
LLVMConfig.cmake
LLVM-Config.cmake
LLVMLibDeps.cmake
DESTINATION share/llvm/cmake)

View File

@ -28,13 +28,13 @@ set(LLVM_ON_WIN32 @LLVM_ON_WIN32@)
# 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:
include( LLVMConfig OPTIONAL RESULT_VARIABLE LLVMCONFIG_INCLUDED )
include( LLVM-Config OPTIONAL RESULT_VARIABLE LLVMCONFIG_INCLUDED )
# If failed, we assume that this is an un-installed build:
if( NOT LLVMCONFIG_INCLUDED )
set(CMAKE_MODULE_PATH
${CMAKE_MODULE_PATH}
"@LLVM_SOURCE_DIR@/cmake/modules")
include( LLVMConfig )
include( LLVM-Config )
endif()

View File

@ -142,7 +142,7 @@ install(FILES ${LLVM_CONFIG}
# Regeneration of library dependencies.
# See the comments at the end of cmake/modules/LLVMConfig.cmake for
# See the comments at the end of cmake/modules/LLVM-Config.cmake for
# notes and guidelines.
set(LLVMLibDeps ${LLVM_MAIN_SRC_DIR}/cmake/modules/LLVMLibDeps.cmake)