summaryrefslogtreecommitdiffstats
path: root/Help/release/dev/FindProtobuf-version.rst
Commit message (Collapse)AuthorAgeFilesLines
* Help: Consolidate 3.6 release notesBrad King2016-06-011-6/+0
| | | | | | | | | | | | | | Move all development release notes into a new version-specific document: tail -q -n +3 Help/release/dev/* > Help/release/3.6.rst git rm -- Help/release/dev/* except the sample topic: git checkout HEAD -- Help/release/dev/0-sample-topic.rst Reference the new document from the release notes index document. Add a title and intro sentence to the new document by hand.
* FindProtobuf: Rename variables to match case of module nameAntonio Perez Barrero2016-03-071-1/+1
| | | | | | | | | | | Use recommended case for variable names. i.e. matching name of the module as passed to `find_package`. For backwards compatibility, the upper case versions of both input and output variables are used and defined when appropriate. Skip this for the _FOUND variable because FPHSA already does it. Skip this for the _VERSION variable because that was recently added and never available with the old name in a release of CMake.
* FindProtobuf: check versionAntonio Perez Barrero2016-02-161-0/+6
Check found libraries version to match user required version. Protobuf compiler executable version is checked to be aligned with found libraries, raising a warning message otherwise.