You've already forked buildcache
mirror of
https://github.com/encounter/buildcache.git
synced 2026-03-30 11:03:52 -07:00
7461916e3b
By default cmake will build Debug on Windows even if we specified `-DCMAKE_BUILD_TYPE=Release` in the previous step.
388 B
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).