mirror of
https://github.com/letscontrolit/ESPEasy.git
synced 2026-09-15 11:05:08 +00:00
Generate filename, included in the build Use post Python scripts to move files to the right directory Use post Python scripts to generate .bin.gz files.
20 lines
430 B
Python
20 lines
430 B
Python
Import("env")
|
|
|
|
# access to global construction environment
|
|
#print env
|
|
|
|
# Dump construction environment (for debug purpose)
|
|
#print env.Dump()
|
|
|
|
# append extra flags to global build environment
|
|
# which later will be used to build:
|
|
# - project source code
|
|
# - frameworks
|
|
# - dependent libraries
|
|
env.Append(CPPDEFINES=[
|
|
"PIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22y",
|
|
"CONTROLLER_SET_NONE",
|
|
"NOTIFIER_SET_NONE",
|
|
"PLUGIN_SET_NONE"
|
|
])
|