You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -27,6 +45,9 @@ the work required to setup up a modern C++ project.
27
45
- Automatic [documentation](https://thelartians.github.io/ModernCppStarter) and deployment with [Doxygen](https://www.doxygen.nl) and [GitHub Pages](https://pages.github.com)
28
46
- Support for [sanitizer tools, and more](#additional-tools)
29
47
48
+
### Tip: Use [Gitflow Workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)
49
+
50
+
30
51
## Usage
31
52
32
53
### Adjust the template to your needs
@@ -39,22 +60,32 @@ the work required to setup up a modern C++ project.
39
60
40
61
Eventually, you can remove any unused files, such as the standalone
41
62
directory or irrelevant github workflows for your project. Feel free to
42
-
replace the License with one suited for your project.
63
+
replace the [License](License) with one suited for your project.
43
64
44
65
To cleanly separate the library and subproject code, the outer
45
66
`CMakeList.txt` only defines the library itself while the tests and other
46
67
subprojects are self-contained in their own directories. During
47
68
development it is usually convenient to [build all subprojects at
48
69
once](#build-everything-at-once).
49
70
71
+
72
+
### Use the makefile wrapper on unix bash or with GVIM
0 commit comments