forked from nmusolino/cookiecutter-cpplib-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
15 lines (15 loc) · 747 Bytes
/
cookiecutter.json
File metadata and controls
15 lines (15 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"full_name": "J. Random Author",
"email": "jra@example.com",
"project_name": "My Project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"library_name": "{{ cookiecutter.project_slug }}",
"cpp_namespace": "{{ cookiecutter.library_name[0:3] }}",
"documentation_generator": ["None", "doxygen", "sphinx"],
"project_short_description": "My sample project containing tests and santitizers.",
"version": "0.1.0",
"license": ["GNU General Public License v3", "BSD license", "MIT license", "Apache Software License 2.0", "Not open source"],
"unit_test_framework": ["Catch2", "None"],
"use_boost": ["yes", "no"],
"use_sanitizers_cmake": ["yes", "no"]
}