From be07d2d7a99c0a54b00526f30f175e93c3588f34 Mon Sep 17 00:00:00 2001 From: Alexandre Bouvier Date: Sat, 8 Jul 2023 19:24:36 +0200 Subject: [PATCH] cmake: fix comment (#1616) --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3515d77..4e3f50e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -256,13 +256,13 @@ configure_package_config_file("${PROJECT_NAME}Config.cmake.in" if(HTTPLIB_COMPILE) write_basic_package_version_file("${PROJECT_NAME}ConfigVersion.cmake" # Example: if you find_package(httplib 0.5.4) - # then anything >= 0.5 and <= 1.0 is accepted + # then anything >= 0.5.4 and < 0.6 is accepted COMPATIBILITY SameMinorVersion ) else() write_basic_package_version_file("${PROJECT_NAME}ConfigVersion.cmake" # Example: if you find_package(httplib 0.5.4) - # then anything >= 0.5 and <= 1.0 is accepted + # then anything >= 0.5.4 and < 0.6 is accepted COMPATIBILITY SameMinorVersion # Tells Cmake that it's a header-only lib # Mildly useful for end-users :)