Daniel Dunbar | 00dd448 | 2009-09-24 06:23:57 +0000 | [diff] [blame^] | 1 | add_executable(not |
2 | not.cpp | ||||
3 | ) | ||||
4 | |||||
5 | target_link_libraries(not 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() |