What's your question?
Is there a reason CMakeLists.txt specifies ExactVersion over SameMajorVersion or SameMinorVerison?
Additional Context
I noticed that between two of my environments, find_package(jwt-cpp 0.7.1 REQUIRED) rejected 0.7.2. A range also didn't seem to work.
I saw that CONFIG is used in the example, which works in both environments, but I'm curious if ExactVersion was chosen for a reason, and whether there is context that I'm missing.
What's your question?
Is there a reason CMakeLists.txt specifies ExactVersion over SameMajorVersion or SameMinorVerison?
Additional Context
I noticed that between two of my environments,
find_package(jwt-cpp 0.7.1 REQUIRED)rejected0.7.2. A range also didn't seem to work.I saw that
CONFIGis used in the example, which works in both environments, but I'm curious ifExactVersionwas chosen for a reason, and whether there is context that I'm missing.