diff options
author | Nao Pross <np@0hm.ch> | 2021-11-15 15:58:52 +0100 |
---|---|---|
committer | Nao Pross <np@0hm.ch> | 2021-11-15 15:58:52 +0100 |
commit | 74c3c9af5cdbcd4197ea939c5154c120450b896b (patch) | |
tree | 4484df913999c46a54692f02eba2064b89cf6d95 /src/gr-fadingui/build.sh | |
parent | Crate slides (diff) | |
download | Fading-74c3c9af5cdbcd4197ea939c5154c120450b896b.tar.gz Fading-74c3c9af5cdbcd4197ea939c5154c120450b896b.zip |
Create build and install script for debian
There is a bug in GR 3.8 that installs the blocks in the wrong dir.
See: https://github.com/gnuradio/gnuradio/issues/5121
Diffstat (limited to '')
-rwxr-xr-x | src/gr-fadingui/build.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gr-fadingui/build.sh b/src/gr-fadingui/build.sh new file mode 100755 index 0000000..29697af --- /dev/null +++ b/src/gr-fadingui/build.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +mkdir -p build +cmake -DGR_PYTHON_DIR=/usr/lib/python3/dist-packages/ -GNinja -Bbuild +ninja -C build + +# install to system +sudo ninja -C build install |