<div dir="ltr"><div><div><div>Hello,<br><br></div>I'm trying to compile mapserver 6.4.1 with CMake, and without JPEG and PNG libraries.<br><br></div>This is the CMake error : <br><br><span style="color:rgb(255,0,0)">CMake Error at CMakeLists.txt:55 (message):<br>

  PNG library/component could not be found and is a mandatory dependency<br><br>    HINT:<br>    - add the PNG install directory to the CMAKE_PREFIX_PATH variable (-DCMAKE_PREFIX_PATH="/path/to/PNG-install-dir;/path/to/other/dirs"<br>

Call Stack (most recent call first):<br>  CMakeLists.txt:281 (report_mandatory_not_found)<br><br></span>
<p style="margin:0px;text-indent:0px">Could NOT find JPEG (missing:  JPEG_LIBRARY JPEG_INCLUDE_DIR) </p>
<p style="margin:0px;text-indent:0px"><span style="color:rgb(255,0,0)">CMake Error at CMakeLists.txt:55 (message):<br>  JPEG library/component could not be found and is a mandatory dependency<br><br>    HINT:<br>    - add the JPEG install directory to the CMAKE_PREFIX_PATH variable (-DCMAKE_PREFIX_PATH="/path/to/JPEG-install-dir;/path/to/other/dirs"<br>

Call Stack (most recent call first):<br>  CMakeLists.txt:290 (report_mandatory_not_found)</span></p><p style="margin:0px;text-indent:0px"><br><span style="color:rgb(255,0,0)"></span></p><p style="margin:0px;text-indent:0px">

<br><span style="color:rgb(255,0,0)"></span></p><span style="color:rgb(255,0,0)">Why I can tell to CMake for don't try to load this libs ? <br><br></span></div><span style="color:rgb(255,0,0)">PS : If I delete lines upon from CMakeLists.txt, the cofigure is done <br>
<br>find_package(PNG)<br>if(PNG_FOUND)<br>  include_directories(${PNG_INCLUDE_DIR})<br>  ms_link_libraries( ${PNG_LIBRARIES})<br>  set(USE_PNG 1)<br>else(PNG_FOUND)<br>  report_mandatory_not_found(PNG)<br>endif(PNG_FOUND)<br>
<br>find_package(JPEG)<br>if(JPEG_FOUND)<br>  include_directories(${JPEG_INCLUDE_DIR})<br>  ms_link_libraries( ${JPEG_LIBRARY})<br>  set(USE_JPEG 1)<br>else(JPEG_FOUND)<br>  report_mandatory_not_found(JPEG)<br>endif(JPEG_FOUND)<br>
</span></div>