[CMake] Add LLVM_LINK_COMPONENTS to loadable modules, LLVMHello and BugpointPasses, on Win32.

llvm-svn: 212904
This commit is contained in:
NAKAMURA Takumi 2014-07-13 13:36:48 +00:00
parent 44f64eadd0
commit c4fc6eec53
2 changed files with 8 additions and 0 deletions

View File

@ -6,6 +6,10 @@ if( NOT LLVM_REQUIRES_RTTI )
endif()
endif()
if(WIN32 OR CYGWIN)
set(LLVM_LINK_COMPONENTS Core Support)
endif()
add_llvm_loadable_module( LLVMHello
Hello.cpp
)

View File

@ -10,6 +10,10 @@ if( NOT LLVM_REQUIRES_RTTI )
endif()
endif()
if(WIN32 OR CYGWIN)
set(LLVM_LINK_COMPONENTS Core)
endif()
add_llvm_loadable_module( BugpointPasses
TestPasses.cpp
)