-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create the readme with how-to build
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# GR-CYBERRADIO | ||
|
||
## Compatibility | ||
This software has been built and tested against Ubuntu 16.04 and Ubuntu 18.04 | ||
|
||
## Build and Install | ||
|
||
`git clone [email protected]:CyberRadio/gr-cyberradio.git` | ||
|
||
### libcyberradio | ||
|
||
cd gr-cyberradio && cd libcyberradio && mkdir build && cd build | ||
cmake ../ | ||
make && sudo make install | ||
cd ../ | ||
|
||
### cyberradiodriver | ||
|
||
cd cyberradiodriver | ||
sudo python setup.py install | ||
cd ../ | ||
|
||
### gr-CyberRadio | ||
|
||
cd gr-CyberRadio && mkdir build && cd build | ||
cmake ../ | ||
make && sudo make install | ||
|