llvm-6502/utils/not/CMakeLists.txt

12 lines
245 B
CMake
Raw Normal View History

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