You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project file generated by running platformio init --ide qtcreator uses absolute paths to the platformio installed SDKs for INCLUDE paths, etc.
For example: INCLUDEPATH += "/home/pastcompute/.platformio/packages/framework-arduinoespressif/variants/generic"
This makes it unsuitable for adding to version control.
It would be prefereable if these options were instead added like: INCLUDEPATH += "${HOME}/.platformio/packages/framework-arduinoespressif/variants/generic"
making the project portable between users
The text was updated successfully, but these errors were encountered:
The project file generated by running
platformio init --ide qtcreator
uses absolute paths to the platformio installed SDKs forINCLUDE
paths, etc.For example:
INCLUDEPATH += "/home/pastcompute/.platformio/packages/framework-arduinoespressif/variants/generic"
This makes it unsuitable for adding to version control.
It would be prefereable if these options were instead added like:
INCLUDEPATH += "${HOME}/.platformio/packages/framework-arduinoespressif/variants/generic"
making the project portable between users
The text was updated successfully, but these errors were encountered: