mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
313f63cb94
- Gratuitous and unused, but possibly useful one day. llvm-svn: 77954
12 lines
281 B
CMake
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()
|