1
0

Register Catch2 tests with CTest

This commit is contained in:
JosiahWI
2023-01-31 08:42:35 -06:00
parent eb77d07f39
commit 850bf1a949
4 changed files with 27 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ The following libraries are required to be installed:
Aside from standard search options (`ZLIB_INCLUDE_DIR`, `ZLIB_LIBRARY`, ...) the following options are available:
* `BUILD_SHARED_LIBS` (default: `ON`) - Build IrrlichtMt as a shared library
* `BUILD_EXAMPLES` (default: `OFF`) - Build example applications
* `BUILD_TESTING` (default: `ON`) - Build Catch2 tests
e.g. on a Linux system you might want to build for local use like this:
@@ -44,6 +45,19 @@ Run the following script in PowerShell:
cd irrlicht
cmake -B build -G "Visual Studio 17 2022" -A "Win64" -DCMAKE_TOOLCHAIN_FILE=[vcpkg-root]/scripts/buildsystems/vcpkg.cmake -DBUILD_SHARED_LIBS=OFF
cmake --build build --config Release
Test
----
To run the Catch2 tests, the project must first be built with `BUILD_TESTING` enabled.
The tests can be run with ctest:
cd build
ctest
Run the tests directly for more detailed output:
build/bin/<sysname>/tests
Platforms
---------