move ceedling tests to test/unit-test

This commit is contained in:
hathach
2022-12-08 09:59:02 +07:00
parent 4b50ca2a61
commit be4f4e4f79
213 changed files with 1 additions and 1 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}
...