[CMake] Get rid of llvm_config() to expand dependencies.

CMake's target_link_libraries() will manage dependencies.

Configuration time may be reduced by a few seconds.

llvm-svn: 200765
This commit is contained in:
NAKAMURA Takumi 2014-02-04 14:42:14 +00:00
parent 906dad8bb3
commit 7b2528b741
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ endmacro(llvm_config)
function(explicit_llvm_config executable)
set( link_components ${ARGN} )
explicit_map_components_to_libraries(LIBRARIES ${link_components})
llvm_map_components_to_libnames(LIBRARIES ${link_components})
target_link_libraries(${executable} ${LIBRARIES})
endfunction(explicit_llvm_config)