eddic / fastcgipp

fastcgi++: A C++ FastCGI and Web development platform:
https://fastcgipp.isatec.ca
GNU Lesser General Public License v3.0
310 stars 94 forks source link

Fix wrong include dir in CMake export file #84

Closed kofuk closed 4 years ago

kofuk commented 4 years ago

fastcgi exporting ${PREFIX}/lib as include directory. If ${PREFIX} is /usr, it doesn't matter because /usr/include is included by default, but it doesn't work if other PREFIX chosen.

This PR fixes the issue and makes FastcgippConfig.cmake working even if very specific PREFIX chosen.

eddic commented 4 years ago

Nice thanks.