-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.yml
71 lines (67 loc) · 1.62 KB
/
project.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
:project:
:use_exceptions: TRUE
:use_mocks: FALSE
:use_test_preprocessor: TRUE
:use_preprocessor_directives: FALSE
:use_auxiliary_dependencies: TRUE
:auto_link_deep_dependencies: TRUE
:build_root: build
:release_build: FALSE
:test_file_prefix: test_
:which_ceedling: gem
:ceedling_version: 0.30.0
:default_tasks:
- test:all
:paths:
:test:
- +:test/**
:source:
- src/**
:include:
- src/
- +:include/**
:libraries: []
:defines:
:test:
- TEST
- CRC8_TABLE
- CRC16_TABLE
- CRC32_TABLE
# - MODULE_ALIGN_DISABLED
# - MODULE_CONVERSION_DISABLED
# - MODULE_CRC_DISABLED
# - MODULE_DELAY_DISABLED
# - MODULE_ENDIAN_DISABLED
# - MODULE_COMPILER_ENABLED
# - MODULE_CONSTANTS_ENABLED
# - MODULE_HOST_ENABLED
# - MODULE_MACRO_ARITHMETIC_DISABLED
# - MODULE_MACRO_BITS_DISABLED
# - MODULE_MACRO_GUARD_DISABLED
# - MODULE_MACRO_MISC_DISABLED
# - MODULE_TYPES_DISABLED
# - MODULE_SFLOAT_DISABLED
# LIBRARIES
# These libraries are automatically injected into the build process. Those specified as
# common will be used in all types of builds. Otherwise, libraries can be injected in just
# tests or releases. These options are MERGED with the options in supplemental yaml files.
:libraries:
:placement: :end
:flag: "-l${1}"
:path_flag: "-L ${1}"
:system: []
:test: []
:release: []
:plugins:
:load_paths:
- "#{Ceedling.load_path}"
:enabled:
- stdout_pretty_tests_report
# - stdout_gtestlike_tests_report
- module_generator
- raw_output_report
- xml_tests_report
- command_hooks
- colour_report
...