Skip to content

fix: rename Boost_INCLUDE_DIR to Boost_INCLUDE_DIRS

Ihor Antonov requested to merge ngortheone/akonadi:fix_boost_include_dirs into master

cmake sets Boost_INCLUDE_DIRS but not Boost_INCLUDE_DIR.

This fixes build issues where cmake complains that Boost_INCLUDE_DIR is set to NOTFOUND

This obsoletes !37 (closed)

based on comment by @nalvarez

The documentation of the module says you should use DIRS, and DIR is just an internal variable to cache the search result between cmake runs. So yes, you should replace Boost_INCLUDE_DIR with Boost_INCLUDE_DIRS everywhere.

Edited by Ihor Antonov

Merge request reports