-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopier.yml
More file actions
42 lines (33 loc) · 910 Bytes
/
copier.yml
File metadata and controls
42 lines (33 loc) · 910 Bytes
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
39
40
41
42
_subdirectory: tmpl
full_name:
type: str
help: Your full name
placeholder: John Doe
email:
type: str
help: Your email address
placeholder: john.doe@example.com
project_name:
type: str
help: The unmangled project name
project_slug:
type: str
help: The mangled project name used as repo id and cmake config name
default: "{{ project_name|lower|replace('_', '-')|replace(' ', '-') }}"
namespace:
type: str
help: The project's C++ namespace (will be prefixed with dplx::)
default: ""
header_config:
type: bool
help: Generate a configuration header with values from configure time.
workaround_header:
type: bool
help: Generate a header with (compiler/etc.) workaround configuration macros.
header_only:
type: bool
help: Generate a header only library project
year:
type: str
help: The copyright year
default: 2022