1
0
Fork 0
forked from fun/fun

More OpenSSL and documenation fun. No more words to say. (0.38.13)

This commit is contained in:
Johannes Findeisen 2026-02-19 14:05:14 +01:00
commit 38968a9a51
33 changed files with 498 additions and 88 deletions

View file

@ -18,7 +18,7 @@ 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/test_opcodes
cmake --build build --target test_opcodes && ./build/test_opcodes
```
Release profile example:
@ -30,14 +30,14 @@ 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/fun_test
cmake --build build --target fun_test && ./build/fun_test
```
You can also invoke CTest to run any tests registered with `add_test()`:
```
cmake --build build_debug --target test
ctest --test-dir build_debug -j
cmake --build build --target test
ctest --test-dir build -j
```
## Adding new tests