freebsd-dev/contrib/llvm/utils/FileUpdate/CMakeLists.txt
Roman Divacky f22ef01c33 Import LLVM/clang from vendor stripped of docs/ test/ website/ www/ examples/
in llvm/ and/or llvm/contrib/clang/ respectively.

Approved by:	ed (mentor)
Approved by:	core
2010-06-09 17:59:52 +00:00

12 lines
281 B
CMake

add_executable(FileUpdate
FileUpdate.cpp
)
target_link_libraries(FileUpdate LLVMSupport LLVMSystem)
if( MINGW )
target_link_libraries(FileUpdate imagehlp psapi)
endif( MINGW )
if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
target_link_libraries(FileUpdate pthread)
endif()