18 lines
532 B
INI
18 lines
532 B
INI
[platformio]
|
|
default_envs = native
|
|
|
|
[env:native]
|
|
; build for desktop, not embedded device
|
|
; expects GCC to be installed and available on the computer!
|
|
platform = native
|
|
; build source code in src/ too
|
|
test_build_src = yes
|
|
;test_framework = custom ; uncomment this if you need debugging messages to be shown (or else run with `pio test -v`)
|
|
debug_test = test_interval
|
|
lib_deps =
|
|
https://github.com/FabioBatSilva/ArduinoFake/archive/refs/heads/master.zip
|
|
build_flags =
|
|
-std=gnu++17
|
|
-DUNITY_OUTPUT_COLOR
|
|
build_type = debug
|