mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 18:17:13 +02:00
Explain that lib
dir is suitable for private libraries // Issue #273
This commit is contained in:
@ -29,7 +29,7 @@ Quickstart
|
|||||||
The next files/directories will be created in ***
|
The next files/directories will be created in ***
|
||||||
platformio.ini - Project Configuration File. |-> PLEASE EDIT ME <-|
|
platformio.ini - Project Configuration File. |-> PLEASE EDIT ME <-|
|
||||||
src - Put your source code here
|
src - Put your source code here
|
||||||
lib - Put here project specific or 3-rd party libraries
|
lib - Put here project specific (private) libraries
|
||||||
Do you want to continue? [y/N]: y
|
Do you want to continue? [y/N]: y
|
||||||
Project has been successfully initialized!
|
Project has been successfully initialized!
|
||||||
Useful commands:
|
Useful commands:
|
||||||
|
@ -23,8 +23,8 @@ This command will create:
|
|||||||
|
|
||||||
* :ref:`projectconf`
|
* :ref:`projectconf`
|
||||||
* ``src`` - a source directory. Put your source code here
|
* ``src`` - a source directory. Put your source code here
|
||||||
* ``lib`` - a directory for the project specific libraries. PlatformIO will
|
* ``lib`` - a directory for the project specific (private) libraries.
|
||||||
compile them to static libraries and link to executable file
|
PlatformIO will compile them to static libraries and link to executable file
|
||||||
|
|
||||||
Options
|
Options
|
||||||
-------
|
-------
|
||||||
@ -91,7 +91,7 @@ Examples
|
|||||||
The next files/directories will be created in ***
|
The next files/directories will be created in ***
|
||||||
platformio.ini - Project Configuration File. |-> PLEASE EDIT ME <-|
|
platformio.ini - Project Configuration File. |-> PLEASE EDIT ME <-|
|
||||||
src - Put your source code here
|
src - Put your source code here
|
||||||
lib - Put here project specific or 3-rd party libraries
|
lib - Put here project specific (private) libraries
|
||||||
Do you want to continue? [y/N]: y
|
Do you want to continue? [y/N]: y
|
||||||
Project has been successfully initialized!
|
Project has been successfully initialized!
|
||||||
Useful commands:
|
Useful commands:
|
||||||
@ -109,7 +109,7 @@ Examples
|
|||||||
The next files/directories will be created in ***
|
The next files/directories will be created in ***
|
||||||
platformio.ini - Project Configuration File. |-> PLEASE EDIT ME <-|
|
platformio.ini - Project Configuration File. |-> PLEASE EDIT ME <-|
|
||||||
src - Put your source code here
|
src - Put your source code here
|
||||||
lib - Put here project specific or 3-rd party libraries
|
lib - Put here project specific (private) libraries
|
||||||
Do you want to continue? [y/N]: y
|
Do you want to continue? [y/N]: y
|
||||||
Project has been successfully initialized!
|
Project has been successfully initialized!
|
||||||
Useful commands:
|
Useful commands:
|
||||||
@ -133,7 +133,7 @@ Examples
|
|||||||
The next files/directories will be created in ***
|
The next files/directories will be created in ***
|
||||||
platformio.ini - Project Configuration File. |-> PLEASE EDIT ME <-|
|
platformio.ini - Project Configuration File. |-> PLEASE EDIT ME <-|
|
||||||
src - Put your source code here
|
src - Put your source code here
|
||||||
lib - Put here project specific or 3-rd party libraries
|
lib - Put here project specific (private) libraries
|
||||||
Do you want to continue? [y/N]: y
|
Do you want to continue? [y/N]: y
|
||||||
Project has been successfully initialized!
|
Project has been successfully initialized!
|
||||||
Useful commands:
|
Useful commands:
|
||||||
|
@ -62,7 +62,7 @@ def cli(project_dir, board, ide, disable_auto_uploading, env_prefix):
|
|||||||
click.style("platformio.ini", fg="cyan"))
|
click.style("platformio.ini", fg="cyan"))
|
||||||
click.echo("%s - Put your source code here" %
|
click.echo("%s - Put your source code here" %
|
||||||
click.style("src", fg="cyan"))
|
click.style("src", fg="cyan"))
|
||||||
click.echo("%s - Put here project specific or 3-rd party libraries" %
|
click.echo("%s - Put here project specific (private) libraries" %
|
||||||
click.style("lib", fg="cyan"))
|
click.style("lib", fg="cyan"))
|
||||||
|
|
||||||
if (app.get_setting("enable_prompts") and
|
if (app.get_setting("enable_prompts") and
|
||||||
|
Reference in New Issue
Block a user