updated readme about new directory system

pull/47/head
Ryzerth 2020-12-22 22:45:27 +01:00
rodzic 22d18a9e58
commit 84f67a3ac1
1 zmienionych plików z 24 dodań i 1 usunięć

Wyświetl plik

@ -79,6 +79,15 @@ You will first need to edit the `root_dev/config` file to point to the modules t
... ...
``` ```
You also need to change the location of the resource and module directories, for development, I recommend:
```json
...
"modulesDirectory": "../root_dev/modules",
...
"resourcesDirectory": "../root_dev/res",
...
```
Remember that these paths will be relative to the run directory. Remember that these paths will be relative to the run directory.
Off cours, remember to add entries for all modules that were built and that you wish to use. Off cours, remember to add entries for all modules that were built and that you wish to use.
@ -144,7 +153,12 @@ sh ./create_root.sh
## Running for development ## Running for development
If you wish to install SDR++, skip to the next step If you wish to install SDR++, skip to the next step
You will first need to edit the `root_dev/config` file to point to the modules that were built. Here us a sample if what it would look like: First run SDR++ from the build directory to generate a default config file
```
./sdrpp -r ../root_dev/
```
Then, you need to edit the `root_dev/config` file to point to the modules that were built. Here us a sample if what it would look like:
```json ```json
... ...
@ -158,6 +172,15 @@ You will first need to edit the `root_dev/config` file to point to the modules t
... ...
``` ```
You also need to change the location of the resource and module directories, for development, I recommend:
```json
...
"modulesDirectory": "../root_dev/modules",
...
"resourcesDirectory": "../root_dev/res",
...
```
Remember that these paths will be relative to the run directory. Remember that these paths will be relative to the run directory.
Off cours, remember to add entries for all modules that were built and that you wish to use. Off cours, remember to add entries for all modules that were built and that you wish to use.