-
-
Notifications
You must be signed in to change notification settings - Fork 792
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add library dependencies to platformio.ini #134
Comments
Yes, declaring library depedencies is a great feature in npm. Sent from my Windows Phone From: Andymailto:[email protected] The file platformio.inialready contains information on the framework required to build a project. If it is missing, platformio offers to automatically install it. However, if the same project requires a library already known to the platformio library manager, the following manual steps are necessary:
I propose adding a new statement to platformio.ini that allow to specify required libraries in the form require-libs = ID1 [, ID2 [, ..]] instructing platformio to check if one or more of the required libs are missing and if so, suggest to automatically install them before proceeding the build. — |
I don't have any objections :) How about to name this option like |
Sounds good to me 😃 |
The file platformio.inialready contains information on the framework required to build a project. If it is missing, platformio offers to automatically install it. However, if the same project requires a library already known to the platformio library manager, the following manual steps are necessary:
I propose adding a new statement to platformio.ini that allow to specify required libraries in the form
require-libs = ID1 [, ID2 [, ..]]
instructing platformio to check if one or more of the required libs are missing and if so, suggest to automatically install them before proceeding the build.
The text was updated successfully, but these errors were encountered: