mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-19 19:17:01 -07:00
Added more useful info to README.md
This commit is contained in:
parent
050b7a482b
commit
113dee2194
1 changed files with 11 additions and 5 deletions
16
README.md
16
README.md
|
|
@ -33,10 +33,16 @@ GDPM is an attempt to make a simple, front-end, command-line, package manager de
|
||||||
Common commands for searching, installing, listing, and removing assets.
|
Common commands for searching, installing, listing, and removing assets.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
gdpm search demo
|
# fetch updates local database if "no packages to install" error
|
||||||
gdpm install "Third Person Controller" --skip-prompt
|
gdpm fetch
|
||||||
|
|
||||||
|
# search and install "Godot Jolt" globally
|
||||||
|
gdpm search jolt
|
||||||
|
gdpm install "Godot Jolt" --skip-prompt
|
||||||
|
|
||||||
|
# list installed packages and remove
|
||||||
gdpm list --style=table
|
gdpm list --style=table
|
||||||
gdpm remove "Third Person Controller" --clean
|
gdpm remove "Godot Jolt" --clean
|
||||||
```
|
```
|
||||||
|
|
||||||
Use `gdpm help` to see full list of commands.
|
Use `gdpm help` to see full list of commands.
|
||||||
|
|
@ -147,7 +153,7 @@ ln -s ../modules/indicators/include/indicators include/indicators
|
||||||
ln -s ../modules/csv2/include/csv2 include/csv2
|
ln -s ../modules/csv2/include/csv2 include/csv2
|
||||||
```
|
```
|
||||||
|
|
||||||
And then build the project:
|
And then build the binaries (check the "build" directory):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Start by cloning the repo, then...
|
# Start by cloning the repo, then...
|
||||||
|
|
@ -166,7 +172,7 @@ cd build
|
||||||
cmake ..
|
cmake ..
|
||||||
make -j$(nproc)
|
make -j$(nproc)
|
||||||
|
|
||||||
# Easy build using predefined `compile` script
|
# Easy build using predefined `compile` script
|
||||||
${project_root}/bin/compile.sh --all
|
${project_root}/bin/compile.sh --all
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue