llvm-6502/utils/FileUpdate/CMakeLists.txt

12 lines
280 B
CMake
Raw Normal View History

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