... | @@ -49,18 +49,22 @@ so that they can be referred to when building entrypoints by simply using `%name |
... | @@ -49,18 +49,22 @@ so that they can be referred to when building entrypoints by simply using `%name |
|
Sections of type `board` and `test` define how to compile the entrypoints.
|
|
Sections of type `board` and `test` define how to compile the entrypoints.
|
|
|
|
|
|
```conf
|
|
```conf
|
|
board:
|
|
[board-name]:
|
|
|
|
Type: board
|
|
BoardId: which board to compile for
|
|
BoardId: which board to compile for
|
|
BinName: name of the final binary (without extension!)
|
|
BinName: name of the final binary (without extension!)
|
|
Include: a space-separated list of files, %something will be substituted
|
|
Include: a space-separated list of files, %something will be substituted
|
|
with the corresponding 'srcfiles'
|
|
with the corresponding 'srcfiles'
|
|
|
|
Defines: a space-separated list of flags, each starting with '-D' (e.g. -DDEBUG)
|
|
Main: name of the main file (e.g. 'foo' -> ENTRY_PATH/foo.cpp)
|
|
Main: name of the main file (e.g. 'foo' -> ENTRY_PATH/foo.cpp)
|
|
|
|
|
|
test:
|
|
[test-name]:
|
|
|
|
Type: test
|
|
BoardId: which board to compile for
|
|
BoardId: which board to compile for
|
|
BinName: name of the final binary (without extension!)
|
|
BinName: name of the final binary (without extension!)
|
|
Include: a space-separated list of files, %something will be substituted
|
|
Include: a space-separated list of files, %something will be substituted
|
|
with the corresponding 'srcfiles'
|
|
with the corresponding 'srcfiles'
|
|
|
|
Defines: a space-separated list of flags, each starting with '-D' (e.g. -DDEBUG)
|
|
Main: name of the main file (e.g. 'foo' -> TEST_PATH/foo.cpp)
|
|
Main: name of the main file (e.g. 'foo' -> TEST_PATH/foo.cpp)
|
|
```
|
|
```
|
|
|
|
|
... | | ... | |