mirror of
https://github.com/30hours/blah2.git
synced 2024-11-08 12:25:42 +00:00
Update SDRplay API to 3.14.0 #6
This commit is contained in:
parent
af4d18546c
commit
8425143423
5 changed files with 1552 additions and 1672 deletions
|
@ -35,7 +35,7 @@ include_directories(src ${UHD_INCLUDE_DIRS})
|
||||||
# TODO: create FindSdrplay.cmake for this
|
# TODO: create FindSdrplay.cmake for this
|
||||||
add_library(sdrplay /usr/local/include/sdrplay_api.h)
|
add_library(sdrplay /usr/local/include/sdrplay_api.h)
|
||||||
set_target_properties(sdrplay PROPERTIES LINKER_LANGUAGE C)
|
set_target_properties(sdrplay PROPERTIES LINKER_LANGUAGE C)
|
||||||
target_link_libraries(sdrplay PUBLIC /usr/local/lib/libsdrplay_api.so.3.12)
|
target_link_libraries(sdrplay PUBLIC /usr/local/lib/libsdrplay_api.so.3.14)
|
||||||
|
|
||||||
add_executable(blah2
|
add_executable(blah2
|
||||||
src/blah2.cpp
|
src/blah2.cpp
|
||||||
|
|
12
Dockerfile
12
Dockerfile
|
@ -23,12 +23,12 @@ RUN cd /blah2/lib && vcpkg integrate install \
|
||||||
&& vcpkg install --clean-after-build
|
&& vcpkg install --clean-after-build
|
||||||
|
|
||||||
# install SDRplay API
|
# install SDRplay API
|
||||||
RUN chmod +x /blah2/lib/sdrplay-3.12.1/SDRplay_RSP_API-Linux-3.12.1.run \
|
RUN chmod +x /blah2/lib/sdrplay-3.14.0/SDRplay_RSP_API-Linux-3.14.0.run \
|
||||||
&& /blah2/lib/sdrplay-3.12.1/SDRplay_RSP_API-Linux-3.12.1.run --tar -xvf -C /blah2/lib/sdrplay-3.12.1 \
|
&& /blah2/lib/sdrplay-3.14.0/SDRplay_RSP_API-Linux-3.14.0.run --tar -xvf -C /blah2/lib/sdrplay-3.14.0 \
|
||||||
&& cp /blah2/lib/sdrplay-3.12.1/x86_64/libsdrplay_api.so.3.12 /usr/local/lib/libsdrplay_api.so \
|
&& cp /blah2/lib/sdrplay-3.14.0/x86_64/libsdrplay_api.so.3.14 /usr/local/lib/libsdrplay_api.so \
|
||||||
&& cp /blah2/lib/sdrplay-3.12.1/x86_64/libsdrplay_api.so.3.12 /usr/local/lib/libsdrplay_api.so.3.12 \
|
&& cp /blah2/lib/sdrplay-3.14.0/x86_64/libsdrplay_api.so.3.14 /usr/local/lib/libsdrplay_api.so.3.14 \
|
||||||
&& cp /blah2/lib/sdrplay-3.12.1/inc/* /usr/local/include \
|
&& cp /blah2/lib/sdrplay-3.14.0/inc/* /usr/local/include \
|
||||||
&& chmod 644 /usr/local/lib/libsdrplay_api.so /usr/local/lib/libsdrplay_api.so.3.12 \
|
&& chmod 644 /usr/local/lib/libsdrplay_api.so /usr/local/lib/libsdrplay_api.so.3.14 \
|
||||||
&& ldconfig
|
&& ldconfig
|
||||||
|
|
||||||
# install UHD API
|
# install UHD API
|
||||||
|
|
|
@ -33,8 +33,8 @@ The build environment consists of a docker-compose.yml file running the followin
|
||||||
sudo git clone http://github.com/30hours/blah2 /opt/blah2
|
sudo git clone http://github.com/30hours/blah2 /opt/blah2
|
||||||
cd /opt/blah2
|
cd /opt/blah2
|
||||||
vim config/config.yml
|
vim config/config.yml
|
||||||
./lib/sdrplay-3.12.1/SDRplay_RSP_API-Linux-3.12.1.run --tar -xvf -C ./lib/sdrplay-3.12.1
|
./lib/sdrplay-3.14.0/SDRplay_RSP_API-Linux-3.14.0.run --tar -xvf -C ./lib/sdrplay-3.14.0
|
||||||
./lib/sdrplay-3.12.1/install_lib.sh
|
./lib/sdrplay-3.14.0/install_lib.sh
|
||||||
sudo docker network create blah2
|
sudo docker network create blah2
|
||||||
sudo systemctl enable docker
|
sudo systemctl enable docker
|
||||||
sudo docker compose up -d
|
sudo docker compose up -d
|
||||||
|
|
File diff suppressed because it is too large
Load diff
1543
lib/sdrplay-3.14.0/SDRplay_RSP_API-Linux-3.14.0.run
Normal file
1543
lib/sdrplay-3.14.0/SDRplay_RSP_API-Linux-3.14.0.run
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue