davidmoreno / onion

C library to create simple HTTP servers and Web Applications.
http://www.coralbits.com/libonion/
Other
2.01k stars 250 forks source link

Use CMake find modules to detect libraries when possible #192

Open anuragagarwal561994 opened 8 years ago

anuragagarwal561994 commented 8 years ago

Currently most of the code to find different libraries are manually written when they can be found using CMake find_package, because of which certain libraries goes NOT_FOUND when trying to find them cross platform like JPEG.

On Mac OS X the header files of libjpeg are handled in a different way than on linux.