mirror of
https://gitlab.com/Luci_/arduino-photometrics.git
synced 2026-04-03 11:35:37 +02:00
12 lines
252 B
Python
12 lines
252 B
Python
# test_init.py
|
|
|
|
Import("env")
|
|
test_env_name = env["PIOENV"]
|
|
|
|
# Injecte manuellement les chemins d'inclusion nécessaires (Unity et votre config)
|
|
env.Append(
|
|
CPPPATH=[
|
|
"test",
|
|
".pio/libdeps/" + test_env_name + "/Unity/src"
|
|
]
|
|
) |