-
Notifications
You must be signed in to change notification settings - Fork 1
/
cookiecutter.json
38 lines (38 loc) · 1 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"project_name": "Test Cookiecutter CMake Conan",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"description": "Behold My Awesome Project!",
"make_cli": "n",
"test_engine": [
"gtest",
"Catch2",
"None"
],
"include_constexpr_tests": "{% if cookiecutter.test_engine == 'Catch2' %}y{% else %}N/A (only with Catch2){% endif %}",
"author_name": "Julien Marrec",
"github_organization": "jmarrec",
"github_repo": "{{ cookiecutter.project_name|replace(' ', '-')|replace('.', '-')|trim() }}",
"open_source_license": [
"MIT",
"BSD",
"GPLv3",
"Apache Software License 2.0",
"Not open source"
],
"auto_build": "y",
"build_type": [
"Debug",
"Release",
"RelWithDebInfo"
],
"compiler": [
"default",
"GCC",
"Clang"
],
"use_ninja": "y",
"_copy_without_render": [
".devcontainer",
".github"
]
}