- Windows 10 and above
- Ubuntu or other Debian-based Linux distro (next release)
- Intel Mac (next release)
For building OpenSSL, export CONAN_BASH_PATH
to a msys2 bash.exe.
mkdir build
cd build
conan install .. -b missing -s compiler=gcc -s compiler.libcxx=libstdc++11 -s compiler.version=11
cmake ..
mingw32-make
mkdir build
cd build
conan install .. -b missing -s build_type=Debug -s compiler.runtime=MTd
cmake ..
cmake --build .
mkdir build
cd build
conan install .. -b missing -s build_type=Release -s compiler.runtime=MT
cmake ..
cmake --build . --config MinSizeRel