Skip to content

Commit 2c414aa

Browse files
committed
Add instructions on how to deal with licenses
1 parent 6393b7c commit 2c414aa

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

tips_tricks.md

+23
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,29 @@ Installing a library can be done with the following command:
6565
psp-pacman -S library
6666
```
6767

68+
## Managing Licenses
69+
{: .fs-6 .fw-700 }
70+
71+
Every project made with the PSPDEV toolchain will import at least some libraries, each with their own license. Everything bundled is free to use, but some libraries will ask you to share their license with your project or in rare cases give users access to your code to respect their licenses. The `psp-create-license-directory` tool can be used to easily collect the licenses that apply to your project, so you can comply with them.
72+
73+
To create a directory with a copy of the licenses that are always used in project made with the PSPDEV toolchain use the following command:
74+
75+
```
76+
psp-create-license-directory
77+
```
78+
79+
For any library you added, for example `sdl2` or `jsoncpp`, you can add the licenses by adding the library names to the command:
80+
81+
```
82+
psp-create-license-directory sdl2 jsoncpp
83+
```
84+
85+
If you're not sure what the library you used is called exactly, you can use the `-l` option to list the installed libraries:
86+
87+
```
88+
psp-create-license-directory -l
89+
```
90+
6891
## Updating the Toolchain
6992
{: .fs-6 .fw-700 }
7093

0 commit comments

Comments
 (0)