I have it in VS and when it settles down there is an error in the Solution Explorer Window
and when I read moreCMake Generation Failed
I get that zlib has to be somewhere. Where does it want it to be? Or where can I see where it links to the zlib folder? The line at 230 isCMake Error at C:/Program Files/Microsoft Visual Studio/2022/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
Could NOT find ZLIB (missing: ZLIB_LIBRARY ZLIB_INCLUDE_DIR)
Code:
include(${CMAKE_CURRENT_LIST_DIR}/FindPackageMessage.cmake)cmake_policy(PUSH)# numbers and boolean constantscmake_policy (SET CMP0012 NEW)# IN_LIST operatorcmake_policy (SET CMP0057 NEW)# internal helper macromacro(_FPHSA_FAILURE_MESSAGE _msg) set (__msg "${_msg}") if (FPHSA_REASON_FAILURE_MESSAGE) string(APPEND __msg "\n Reason given by package: ${FPHSA_REASON_FAILURE_MESSAGE}\n") endif() if (${_NAME}_FIND_REQUIRED) message(FATAL_ERROR "${__msg}") ;// LINE 230 else () if (NOT ${_NAME}_FIND_QUIETLY) message(STATUS "${__msg}") endif () endif ()endmacro()
Statistics: Posted by matalog — Sun Feb 02, 2025 8:43 pm