Skip to content

Commit

Permalink
update readme for modern cmake syntax and incremental build support
Browse files Browse the repository at this point in the history
  • Loading branch information
fredlllll authored and dscharrer committed Aug 6, 2022
1 parent cef0f76 commit adc3577
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,12 @@ Additionally, you'll need the following libraries to build the Crash Reporter:
cmake .. -G "Visual Studio 15 2017"

Replace `"Visual Studio 15 2017"` with the desired [CMake generator name](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html), for example `"Visual Studio 15 2017 Win64"` for 64-bit builds.
Starting with CMake 3.1 the architecture should be specified seperately

cmake .. -G "Visual Studio 16 2019" -A x64
Valid Architectures are Win32, x64, ARM and ARM64. If you intend to use Visual Studios incremental builds, add -DDEVELOPER=1 to the command

cmake .. -G "Visual Studio 16 2019" -A x64 -DDEVELOPER=1

5. Build the generated solution in Visual Studio

0 comments on commit adc3577

Please sign in to comment.