Skip to content

Commit

Permalink
cleanup README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Mar 15, 2024
1 parent 4f1c3fd commit 33facdd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,22 @@ Take a look at the [WORKSPACE](WORKSPACE) file.
# Build
On any *\*NIX* (MacOS, GNU/Linux) platform:
```sh
bazel build --cxxopt=-std=c++20 //main:template
bazel build -c opt //main:template
```

On Windows when using *MSVC 2022+*:
```cmd
bazel build --cxxopt="-std:c++20" ///main:template
bazel build -c opt //main:template
```

# Test
On any *\*NIX* (MacOS, GNU/Linux) platform:
```sh
bazel test --cxxopt=-std=c++20 //main:template
bazel test -c opt --test_output=all //main:test_template
```

On Windows when using *MSVC 2022+*:
```cmd
bazel test --cxxopt="-std:c++20" ///main:template
bazel test -c opt --test_output=all //main:test_template
```

0 comments on commit 33facdd

Please sign in to comment.