Files
Florin Trofin 7461916e3b Add --config param for building Release
By default cmake will build Debug on Windows even if we specified `-DCMAKE_BUILD_TYPE=Release` in the previous step.
2021-05-11 18:17:56 +02:00

388 B

Building BuildCache

Building from source

Use CMake and your favorite C++ compiler to build the BuildCache program:

$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Release ../src
$ cmake --build . --config Release

Note: For S3 support on non-macOS/Windows systems you need OpenSSL (e.g. install libssl-dev on Ubuntu before running CMake).