We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dffe273 commit 17e0dadCopy full SHA for 17e0dad
README.md
@@ -227,8 +227,21 @@
227
* Write some tests...
228
* Compile and Run!
229
230
+### Quick Start (CMake)
231
+* Add to your CMakeLists.txt the following lines:
232
+ ```
233
+ include(FetchContent)
234
+ FetchContent_Declare(
235
+ gunit
236
+ GIT_REPOSITORY https://github.com/cpp-testing/GUnit.git
237
+ GIT_TAG master
238
+ )
239
+ FETCHCONTENT_MAKEAVAILABLE(gunit)
240
241
+* Write some tests...
242
+* Compile and Run
243
---
-
244
+> When using the installation method as described [here](#quick-start-cmake) you may fully skip this step.
245
* [gherkin](https://github.com/cucumber/cucumber/wiki/Gherkin) support using CMake
246
* `gherkin-cpp` using add_subdirectory
247
```sh
0 commit comments