Skip to content

v1.0.1

Latest
Compare
Choose a tag to compare
@k-yoshimi k-yoshimi released this 09 Aug 05:15

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)
  • 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 to OFF.
  • Default Behavior: The default behavior remains unchanged; testing is enabled unless explicitly disabled.