forked from melexis/mlx90632-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.yml
79 lines (74 loc) · 1.58 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
72
73
74
75
76
77
78
79
:project:
:use_exceptions: FALSE
:compile_threads: 1
:test_threads: 1
:use_test_preprocessor: TRUE
:use_auxiliary_dependencies: TRUE
:use_deep_dependencies: TRUE
:use_mocks: TRUE
:build_root: 'build/'
# :release_build: TRUE
:test_file_prefix: Test
:options_paths:
- 'targets/'
#:release_build:
# :output: TempSensor.out
# :use_assembly: FALSE
:environment: []
:extension:
:executable: .out
:paths:
:test:
- +:test/*
- tools/ceedling/vendor/unity/src/
- tools/ceedling/vendor/cmock/src/
:source:
- +:src/**
:include:
- +:inc/**
:defines:
:common: &common_defines ""
:test:
- STATIC=""
- INLINE=""
- TEST
- BITS_PER_LONG=64
- UNITY_INCLUDE_DOUBLE
- UNITY_SUPPORT_TEST_CASES
:cmock:
:framework: :unity
:when_no_prototypes: :warn
:when_ptr: :smart
:treat_externs: :include
:enforce_strict_ordering: TRUE
:plugins:
- :ignore
- :callback
- :expect
- :array
- :return_thru_ptr
- :ignore_arg
:includes_h_pre_orig_header:
- 'unity.h'
:treat_as:
uint8: HEX8
uint16: HEX16
uint32: UINT32
int8: INT8
bool: UINT8
int: INT32
char: INT8
:mock_path: 'build/test/mocks'
:mock_prefix: 'mock_'
:mock_suffix: ''
:tools:
# Ceedling defaults to using gcc for compiling, linking, etc.
# As [:tools] is blank, gcc will be used (so long as it's in your system path)
# See documentation to configure a given toolchain for use
:plugins:
:load_paths:
- tools/ceedling/plugins
:enabled:
- stdout_pretty_tests_report
- gcov
:colors: true