mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-05 02:28:51 +00:00
d5ec932c3a
llvm-svn: 120298
12 lines
270 B
CMake
12 lines
270 B
CMake
add_executable(FileUpdate
|
|
FileUpdate.cpp
|
|
)
|
|
|
|
target_link_libraries(FileUpdate LLVMSupport)
|
|
if( MINGW )
|
|
target_link_libraries(FileUpdate imagehlp psapi)
|
|
endif( MINGW )
|
|
if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
|
|
target_link_libraries(FileUpdate pthread)
|
|
endif()
|