You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is actually a problem when cmake find_package method is used in a consumer library.
Indeed
find_package(tomlplusplus 2.4.0 REQUIRED)
will fail with an error similar to this one
Could not find a configuration file for package "tomlplusplus" that is
compatible with requested version "2.4.0".
The following configuration files were considered but not accepted:
/usr/share/miniconda/envs/test/lib/cmake/tomlplusplus/tomlplusplusConfig.cmake, version: 2.3.1
On the latest master 4f21332 the version is correct
The text was updated successfully, but these errors were encountered:
Ah, thanks for reporting this @GiulioRomualdi. There have been a few other minor useful improvements since 2.4.0 too so perhaps it's time for me to publish a new release.
I noticed that in the release 2.4.0 the cmake project version is 2.3.1
tomlplusplus/CMakeLists.txt
Line 3 in 1baad21
This is actually a problem when cmake
find_package
method is used in a consumer library.Indeed
find_package(tomlplusplus 2.4.0 REQUIRED)
will fail with an error similar to this one
On the latest master 4f21332 the version is correct
The text was updated successfully, but these errors were encountered: