mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-10 01:55:08 +00:00
3145e923c1
Requires CMake 2.8.3 or newer. llvm-svn: 126092
12 lines
267 B
CMake
12 lines
267 B
CMake
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()
|