-
Notifications
You must be signed in to change notification settings - Fork 62
Description
Tutorial from tutorial\consuming_packages\simple_cmake_project\
does not build with commands provided from first lesson in documentation I am trying to follow (https://docs.conan.io/2/tutorial/consuming_packages/build_simple_cmake_project.html)
When I do conan install . --output-folder=build --build=missing
, it finishes with "finished successfully" status, despite of two warnings
WARN: deprecated: Usage of deprecated Conan 1.X features that will be removed in Conan 2.X: WARN: deprecated: 'cpp_info.names' used in: zlib/1.2.11
However next command which is cmake .. -G "Visual Studio 15 2017" -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
fails with
CMake Error at C:/Program Files/CMake/share/cmake-3.28/Modules/FindPackageHandleStandardArgs.cmake:230 (message): Could NOT find ZLIB (missing: ZLIB_LIBRARY ZLIB_INCLUDE_DIR)
I have changed required ZLIB version to 1.3.1 and now it works.