glassechidna / zxing-cpp

ZXing C++ Library
Apache License 2.0
610 stars 435 forks source link

CMake: Use a better FindIconv.cmake #60

Closed rcdailey closed 6 years ago

rcdailey commented 6 years ago

The current FindIconv.cmake module matches a library named "c", which happens to match 'libc.so', which is invalid. I replaced it with a version of FindIconv.cmake from the Orphis/boost-cmake project on github here:

https://github.com/Orphis/boost-cmake/blob/master/cmake/Modules/FindIconv.cmake

Tested in the following configurations:

aidansteele commented 6 years ago

Thanks, this is great!