Some more documentation fun. No code changes. (0.38.11)
This commit is contained in:
parent
41ebd59187
commit
6ee78cc4fb
3 changed files with 11 additions and 11 deletions
|
|
@ -18,19 +18,19 @@ To list targets with CMake directly, consult your IDE or run the build system’
|
|||
Debug profile example:
|
||||
|
||||
```
|
||||
cmake --build build_debug --target test_opcodes && ./build_debug/test_opcodes
|
||||
cmake --build build_debug --target test_opcodes && ./build/test_opcodes
|
||||
```
|
||||
|
||||
Release profile example:
|
||||
|
||||
```
|
||||
cmake --build build_release --target test_opcodes && ./build_release/test_opcodes
|
||||
cmake --build build_release --target test_opcodes && ./build/test_opcodes
|
||||
``>
|
||||
|
||||
If `fun_test` exists in your configuration:
|
||||
|
||||
```
|
||||
cmake --build build_debug --target fun_test && ./build_debug/fun_test
|
||||
cmake --build build_debug --target fun_test && ./build/fun_test
|
||||
```
|
||||
|
||||
You can also invoke CTest to run any tests registered with `add_test()`:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue