mirror of
https://github.com/ThrowTheSwitch/Unity
synced 2026-08-02 15:04:34 -04:00
24 lines
809 B
YAML
24 lines
809 B
YAML
# =========================================================================
|
|
# Unity - A Test Framework for C
|
|
# ThrowTheSwitch.org
|
|
# Copyright (c) 2007-26 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
|
# SPDX-License-Identifier: MIT
|
|
# =========================================================================
|
|
|
|
# This file is meant to be used with a toolchain specifying file.
|
|
# This adds common settings for dealing with platforms which don't include
|
|
# a standard library (often embedded devices). Specific defines can be
|
|
# overwritten if assumptions here are not correct.
|
|
|
|
---
|
|
:defines:
|
|
:test:
|
|
- UNITY_EXCLUDE_STDINT_H
|
|
- UNITY_EXCLUDE_LIMITS_H
|
|
- UNITY_EXCLUDE_MATH_H
|
|
- UNITY_EXCLUDE_FLOAT
|
|
- UNITY_EXCLUDE_DOUBLE
|
|
- UNITY_INT_WIDTH=32
|
|
- UNITY_LONG_WIDTH=64
|
|
- UNITY_POINTER_WIDTH=64
|