1
0
Fork 0
forked from fun/fun

Added some ctest stuff. No code changes. (0.38.11)

This commit is contained in:
Johannes Findeisen 2026-02-09 02:28:19 +01:00
commit 494f47a9a5
2 changed files with 47 additions and 2 deletions

8
make
View file

@ -79,11 +79,17 @@ elif [ "$target" = "cpp_all" ]; then
-DFUN_WITH_NOTCURSES=ON \
-DFUN_WITH_CPP=ON \
&& cmake --build build --target fun
elif [ "$target" = "cpp_minimal" ]; then
elif [ "$target" = "cpp_minimal" ]; then
rm -rf build \
&& cmake -S . -B build \
-DFUN_WITH_CPP=ON \
&& cmake --build build --target fun
elif [ "$target" = "ctest" ]; then
rm -rf build \
&& cmake -S . -B build \
&& cmake --build build --target fun \
&& (cd ./build/ \
&& ctest --output-on-failure -R crypto)
elif [ "$target" = "debug" ]; then
rm -rf build \
&& cmake -S . -B build \