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 46f2630 commit eba109dCopy full SHA for eba109d
README.md
@@ -23,10 +23,13 @@ git clone https://github.com/vinitjames/circularbuffer_CPP.git
23
# Without CMAKE
24
copy circular_buffer.h to your project
25
26
-# With CMAKE to run tests
27
-Run ```mkdir build
28
- cd build
29
- cmake ..
30
- cmake --build .
31
- ctest ```
32
- to compile and run tests.
+# With CMAKE
+To locally build and run test run the following commands
+```sh
+$ mkdir build
+$ cd build
+$ cmake ..
+$ cmake --build .
33
+$ ctest
34
+```
35
+To include in project as a submodule just clone the repo in a subdirectory and use `add_subdirectory()` in the top level `CMakeLists.txt`
0 commit comments