Hello!<br><br>Well, I am currently using cURL for a project of mine, but on windows I can&#39;t find the cURL library only using the find_package(CURL) provided with CMake, although it works fine with linux.<br><br>So, I created a directory named &quot;deps&quot; in my source directory. How can I make the find_package to look at this directory before looking at the default directories? Like:<br>
<br># Look firstly at the /deps directory, if finds the libcurl.a and the include/curl folder set the CURL_FOUND macro and the other ones that the find_package() automatically provides...<br><br>if( NOT CURL_FOUND )<br>    # Then looks at the default paths.<br>
    find_package(CURL REQUIRED)<br>endif()<br><br><br>So, how can I make it to do that? It is better to look first at the /deps directory because of that even linux users can provide a build different than the one installed in its system, making the build more flexible. And on Windows the users can put the lib files there to be found by CMake.<br>
<br>If there is any better solution with this problem with Windows, I am open to suggestions.<br><br><br>Thanks!<br><br>Renato<br>