Merge branch 'develop' of https://github.com/platformio/platformio-core into develop

This commit is contained in:
Ivan Kravets
2022-05-15 15:35:07 +03:00

View File

@ -1,6 +1,12 @@
all:
platformio -c qtcreator run
# regenerate project files to reflect platformio.ini changes
project-update:
@echo "This will overwrite project metadata files. Are you sure? [y/N] " \
&& read ans && [ $${ans:-'N'} = 'y' ]
platformio project init --ide qtcreator
# forward any other target (clean, build, etc.) to pio run
{{'%'}}:
platformio -c qtcreator run --target $*