blob: ea6ccc20bde68b2db0d9a2cca45cfd59133ae743 [file] [log] [blame]
Austin Schuh906616c2019-01-21 20:25:11 -08001This project has been ported to Windows, including stack tracing, signal
2handling, and unit tests.
3
4A Visual Studio solution file is explicitly not provided because it is not
5maintainable. Instead, a CMake build system exists to generate the correct
6solution for your version of Visual Studio.
7
8In short,
9 (1) Install CMake from: https://cmake.org/download/
10 (2) With CMake on your PATH, run `cmake .` to generate the build files
11 (3) Either use `cmake --build`, or open the generated solution
12
13CMake provides different generators, and by default will pick the most relevant
14one to your environment. If you need a specific version of Visual Studio, use
15`cmake . -G <generator-name>`, and see `cmake --help` for the available
16generators. Also see `-T <toolset-name>`, which can used to request the native
17x64 toolchain with `-T host=x64`.