mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 18:10:31 +00:00
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()
|