1
0
Fork 0
forked from fun/fun

Some more documentation fun. No code changes. (0.38.11)

This commit is contained in:
Johannes Findeisen 2026-02-11 17:55:04 +01:00
commit 6ee78cc4fb
3 changed files with 11 additions and 11 deletions

View file

@ -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()`: