Minor changes to README.md file

This commit is contained in:
David Allen 2022-07-30 13:24:59 -05:00
parent 58936b7db9
commit 2bf0186f98

View file

@ -88,6 +88,7 @@ cpp_args = [
'-DGDPM_ENABLE_TIMESTAMPS=1' '-DGDPM_ENABLE_TIMESTAMPS=1'
... ...
] ]
```
This can be done in CMake in a similar fashion: This can be done in CMake in a similar fashion:
@ -106,6 +107,8 @@ else()
endif() endif()
``` ```
### Macro Definitions
| Macro | Values | Description | | Macro | Values | Description |
| --------------------- | ------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- | | --------------------- | ------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| GDPM_LOG_LEVEL | 0-5 | Sets the logging level to show when the program runs. Setting GDPM_LOG_LEVEL=0 will completely disable logging information being displayed. | | GDPM_LOG_LEVEL | 0-5 | Sets the logging level to show when the program runs. Setting GDPM_LOG_LEVEL=0 will completely disable logging information being displayed. |
@ -132,7 +135,7 @@ Packages can be installed using the "install" command and providing a list of co
```bash ```bash
gdpm install "Flappy Godot" "GodotNetworking" -y gdpm install "Flappy Godot" "GodotNetworking" -y
gdpm install -f packages.txt --config config.json --no-sync -y gdpm install -f packages.txt --config config.json --no-sync --no-prompt
``` ```
Packages can be removed similiarly to installing. Packages can be removed similiarly to installing.