12 lines
224 B
YAML
12 lines
224 B
YAML
|
|
# Example shuriken.yaml config for a minimal C++ project with modules.
|
||
|
|
|
||
|
|
defaults:
|
||
|
|
cpp_standard: c++20
|
||
|
|
cpp_flags: -Wall -Wextra -Werror -pedantic
|
||
|
|
|
||
|
|
default_target: linux
|
||
|
|
|
||
|
|
targets:
|
||
|
|
linux:
|
||
|
|
output_file: minimal_example
|