zpu: managed to compile program that writes constant to global variable
[llvm/zpu.git] / utils / not / CMakeLists.txt
blob522708d1b93bf26903e34908f5644a04b9d6da51
1 add_executable(not
2   not.cpp
3   )
5 target_link_libraries(not LLVMSupport LLVMSystem)
6 if( MINGW )
7   target_link_libraries(not imagehlp psapi)
8 endif( MINGW )
9 if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
10   target_link_libraries(not pthread)
11 endif()