comparison tools/bugpoint-passes/CMakeLists.txt @ 77:54457678186b LLVM3.6

LLVM 3.6
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Mon, 08 Sep 2014 22:06:00 +0900
parents 95c75e76d11b
children 1172e4bd9c6f
comparison
equal deleted inserted replaced
34:e874dbf0ad9d 77:54457678186b
1 if( NOT LLVM_BUILD_TOOLS ) 1 if( NOT LLVM_BUILD_TOOLS )
2 set(EXCLUDE_FROM_ALL ON) 2 set(EXCLUDE_FROM_ALL ON)
3 endif()
4
5 # If we don't need RTTI or EH, there's no reason to export anything
6 # from this plugin.
7 if( NOT LLVM_REQUIRES_RTTI )
8 if( NOT LLVM_REQUIRES_EH )
9 set(LLVM_EXPORTED_SYMBOL_FILE ${CMAKE_CURRENT_SOURCE_DIR}/bugpoint.exports)
10 endif()
11 endif()
12
13 if(WIN32 OR CYGWIN)
14 set(LLVM_LINK_COMPONENTS Core)
3 endif() 15 endif()
4 16
5 add_llvm_loadable_module( BugpointPasses 17 add_llvm_loadable_module( BugpointPasses
6 TestPasses.cpp 18 TestPasses.cpp
7 ) 19 )