-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build instructions and workflows
- Loading branch information
1 parent
5955717
commit aaa4849
Showing
12 changed files
with
66 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Instructions | ||
Clone the repository recursively so all the submodules are installed. | ||
```git clone https://github.com/williamyang98/SDRPlusPlus-DAB-Radio-Plugin.git --recurse-submodules``` | ||
|
||
## Steps | ||
1. Update brew: ```brew update``` | ||
2. Install packages: ```brew bundle install --file=./toolchains/macos/Brewfile``` | ||
3. Install mako: ```pip3 install mako``` | ||
4. Install volk: | ||
- Change to volk: ```cd vendor/volk``` | ||
- Configure cmake: ```cmake . -B build -DCMAKE_BUILD_TYPE=Release -G Ninja``` | ||
- Build and install: ```sudo cmake --build build --config Release --target install``` | ||
5. Configure cmake: ```cmake . -B build -DCMAKE_BUILD_TYPE=Release -G Ninja``` | ||
6. Build: ```cmake --build build --config Release --target dab_plugin``` | ||
|
||
## Install files | ||
Copy ```build/src/dab_plugin.dylib``` into your SDR++ modules directory. | ||
|
||
Make sure that the version of SDR++ in ```vendor/sdrplusplus``` is the same as your SDR++ installation. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
# Instructions | ||
Clone the repository recursively so all the submodules are installed. | ||
```git clone https://github.com/williamyang98/SDRPlusPlus-DAB-Radio-Plugin``` | ||
```git clone https://github.com/williamyang98/SDRPlusPlus-DAB-Radio-Plugin.git --recurse-submodules``` | ||
|
||
## Steps | ||
1. ```./toolchains/ubuntu/install_packages.sh```. | ||
2. ```./toolchains/ubuntu/cmake_configure.sh```. | ||
3. ```ninja -C build-ubuntu dab_plugin```. | ||
4. ```./toolchains/ubuntu/create_package.sh```. | ||
1. Install packages: ```./toolchains/ubuntu/install_packages.sh```. | ||
2. Configure cmake: ```cmake . -B build -DCMAKE_BUILD_TYPE=Release -G Ninja```. | ||
3. Build: ```cmake --build build --config Release```. | ||
|
||
## Install files | ||
Copy the contents of ```plugin_package/``` into ```/usr/lib/sdrpp/plugins/```. | ||
Copy ```build/src/dab_plugin.so``` into ```/usr/lib/sdrpp/plugins/```. | ||
|
||
Make sure that the version of SDR++ in ```vendor/sdrplusplus``` is the same as your SDR++ installation. | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.