| 26 | } |
| 27 | |
| 28 | fn main() { |
| 29 | try_gcc("-lblas", "BLAS not found. On Ubuntu try 'sudo apt-get install libblas3' before continuing."); |
| 30 | try_gcc("-lopencv_highgui", "OpenCV not found. On Ubuntu try 'sudo apt-get install libopencv-highgui2.4' before continuing."); |
| 31 | try_gcc("-lopencv_core", "OpenCV not found. On Ubuntu try 'sudo apt-get install libopencv-core2.4' before continuing."); |
| 32 | try_gcc("-lopencv_imgproc", "OpenCV not found. On Ubuntu try 'sudo apt-get install libopencv-imgproc2.4' before continuing."); |
| 33 | } |
| 34 | |