You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current CMake build file is already prepared to ad hoc compile OpenSLL and CURL but compilation failed on a Windows11 machine as the file names exceeded 256 characters which is a known limitiation on Windows.
Until then, the CURL must be downloaded and include and library files must be made known to CMake via
CURL_INCLUDE_DIR
CURL_LIBRARY
The text was updated successfully, but these errors were encountered:
Removed PATH modification and Windows-specific CURL handling.
Added conditional build for openssl and curl on non-Windows.
Updated find_package(CURL) for platform-specific options.
Linked required libraries to the project.
Revised install commands for better target destinations.
Removed redundant library installation command.
Updated the required C++ compiler version to C++ 22. Removed the need for a local copy of libcurl. Updated Windows build instructions to include vcpkg installation and removed detailed build steps. Added an explanation for using vcpkg to simplify compiling the CURL dependency on Windows.
The current CMake build file is already prepared to ad hoc compile OpenSLL and CURL but compilation failed on a Windows11 machine as the file names exceeded 256 characters which is a known limitiation on Windows.
Until then, the CURL must be downloaded and include and library files must be made known to CMake via
The text was updated successfully, but these errors were encountered: