view utils/FileCheck/CMakeLists.txt @ 13:0c91843d63c0

add README.txt and make info page on wiki
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Mon, 19 Aug 2013 14:02:11 +0900
parents 9ad51c7bc036
children
line wrap: on
line source

add_llvm_utility(FileCheck
  FileCheck.cpp
  )

target_link_libraries(FileCheck LLVMSupport)
if( MINGW )
  target_link_libraries(FileCheck imagehlp psapi)
endif( MINGW )
if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
  target_link_libraries(FileCheck pthread)
endif()