Lines Matching +full:- +full:bbuild
5 [CMake target](#cmake-target)<br>
6 [Automatic test registration](#automatic-test-registration)<br>
7 [CMake project options](#cmake-project-options)<br>
8 [Installing Catch2 from git repository](#installing-catch2-from-git-repository)<br>
55 `--list-test-names-only` flag, and then parsing the output to find all
91 pass to the Catch executable alongside the `--list-test-names-only` flag.
137 commented-out tests will be registered anyway.
160 * `PARSE_CATCH_TESTS_VERBOSE` -- When `ON`, the script prints debug
162 * `PARSE_CATCH_TESTS_NO_HIDDEN_TESTS` -- When `ON`, hidden tests (tests
165 * `PARSE_CATCH_TESTS_ADD_FIXTURE_IN_TEST_NAME` -- When `ON`, adds fixture
167 * `PARSE_CATCH_TESTS_ADD_TARGET_IN_TEST_NAME` -- When `ON`, adds target
169 * `PARSE_CATCH_TESTS_ADD_TO_CONFIGURE_DEPENDS` -- When `ON`, adds test
171 step will be re-ran when the test files change, letting new tests be
190 * `CATCH_BUILD_TESTING` -- When `ON`, Catch2's SelfTest project will be
194 * `CATCH_BUILD_EXAMPLES` -- When `ON`, Catch2's usage examples will be
196 * `CATCH_INSTALL_DOCS` -- When `ON`, Catch2's documentation will be
198 * `CATCH_INSTALL_HELPERS` -- When `ON`, Catch2's contrib folder will be
200 * `BUILD_TESTING` -- When `ON` and the project is not used as a subproject,
213 $ cmake -Bbuild -H. -DBUILD_TESTING=OFF
214 $ sudo cmake --build build/ --target install
224 ---