blob: 407c82eeeadda0f22ecd17c6608517db1eb34faf [file] [log] [blame]
Daniel Dunbar00dd4482009-09-24 06:23:57 +00001add_executable(not
2 not.cpp
3 )
4
5target_link_libraries(not LLVMSystem)
6if( MINGW )
7 target_link_libraries(not imagehlp psapi)
8endif( MINGW )
9if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
10 target_link_libraries(not pthread)
11endif()