Skip to content

Commit 5051c27

Browse files
authored
Update HACKING.md
1 parent 5d7a84f commit 5051c27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

HACKING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ Other important files and directories:
4646
mkdir build
4747
cd build
4848
cmake ..
49-
cmake --build . --config=Release
49+
cmake --build . --config Release
5050
benchmark/parse ../jsonexamples/twitter.json
5151
```
5252
The last line becomes `./benchmark/Release/parse.exe ../jsonexample/twitter.json` under Windows. You may also use Google Benchmark:
5353
```bash
5454
mkdir build
5555
cd build
5656
cmake .. -DSIMDJSON_GOOGLE_BENCHMARKS=ON
57-
cmake --build . --target bench_parse_call --config=Release
57+
cmake --build . --target bench_parse_call --config Release
5858
./benchmark/bench_parse_call
5959
```
6060
The last line becomes `./benchmark/Release/bench_parse_call.exe` under Windows. Under Windows, you can also build with the clang compiler by adding `-T ClangCL` to the call to `cmake .. `.

0 commit comments

Comments
 (0)