adding new ceedling test project

This commit is contained in:
hathach
2019-06-10 16:18:27 +07:00
parent 579f468d38
commit 97c5c7a937
199 changed files with 23201 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
---
#:extension:
# :subprojects: '.a'
:subprojects:
:paths: []
# - :name: subprojectA
# :source:
# - ./first/subproject/dir
# - ./second/subproject/dir
# :include:
# - ./first/include/dir
# :build_root: ./subproject/build/dir
# :defines:
# - FIRST_DEFINE
:tools:
:subprojects_compiler:
:executable: gcc
:arguments:
- -g
- -I"$": COLLECTION_PATHS_SUBPROJECTS
- -D$: COLLECTION_DEFINES_SUBPROJECTS
- -c "${1}"
- -o "${2}"
:subprojects_linker:
:executable: ar
:arguments:
- rcs
- ${2}
- ${1}
...