Explain that lib dir is suitable for private libraries // Issue #273

This commit is contained in:
Ivan Kravets
2015-08-21 23:56:22 +03:00
parent bf15ba3a78
commit 8e42c4ae31
3 changed files with 7 additions and 7 deletions

View File

@ -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:

View File

@ -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:

View File

@ -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