Release Notes for v1.0.1
Overview
This release introduces a new option for enabling or disabling testing within the CMake build system. This enhancement provides more flexibility in controlling the testing process during the build.
Changes
CMakeLists.txt
-
Added: A new CMake option
TestStdFace
to control the inclusion of testing-related code.option(TestStdFace "Enable testing" ON)
- Default Value:
ON
(Testing is enabled by default)
- Default Value:
-
Conditional Testing: The testing code is now included conditionally based on the
TestStdFace
option.if (TestStdFace) enable_testing() add_subdirectory(test) endif()
Impact
- Flexibility: Users now have the option to disable testing during the build process by setting
TestStdFace
toOFF
. - Default Behavior: The default behavior remains unchanged; testing is enabled unless explicitly disabled.