From f1bcfe64749706413d5cfdbc84e6e873541d5b61 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 21:14:36 -0500 Subject: [PATCH 01/21] Create .travis.yml --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..dee32b7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +dist: trusty +language: cpp +script: cmake +addons: + apt: + packages: + - ibpulse-dev + - libgtk-3-dev + - freeglut3 + - freeglut3-dev From ae6fb3515f6ca81b3b11dde9e72b5e91c31821c1 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 21:17:11 -0500 Subject: [PATCH 02/21] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dee32b7..981fbec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ script: cmake addons: apt: packages: - - ibpulse-dev + - libpulse-dev - libgtk-3-dev - freeglut3 - freeglut3-dev From 3448f4030b29613ae1f5e049d6b17250775aca95 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 21:36:30 -0500 Subject: [PATCH 03/21] Update .travis.yml --- .travis.yml | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 981fbec..98c4de7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ dist: trusty language: cpp -script: cmake addons: apt: packages: @@ -8,3 +7,34 @@ addons: - libgtk-3-dev - freeglut3 - freeglut3-dev + +script: + # Liquid-DSP + mkdir jgaeddert/ + git clone https://github.com/jgaeddert/liquid-dsp.git jgaeddert/liquid-dsp + pushd . + cd jgaeddert/liquid-dsp/ + ./bootstrap.sh + ./configure + make + sudo make install + popd + + # Soapy SDR + mkdir pothosware/ + git clone https://github.com/pothosware/SoapySDR.git pothosware/SoapySDR + mkdir pothosware/SoapySDR-build + cmake pothosware/SoapySDR pothosware/SoapySDR-build + pushd . + cd pothosware/SoapySDR-build + make + sudo make install + popd + + # CubicSDR + mkdir cjcliffe/CubicSDR-build + cmake cjcliffe/CubicSDR cjcliffe/CubicSDR-build + pushd . + cd cjcliffe/CubicSDR-build + make + From 32cfb5b382f333cc2fd3fe6598903c202257f072 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 21:49:50 -0500 Subject: [PATCH 04/21] Create build.sh --- travis-ci/build.sh | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 travis-ci/build.sh diff --git a/travis-ci/build.sh b/travis-ci/build.sh new file mode 100644 index 0000000..3e61d02 --- /dev/null +++ b/travis-ci/build.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +# Liquid-DSP +mkdir jgaeddert/ +git clone https://github.com/jgaeddert/liquid-dsp.git jgaeddert/liquid-dsp +pushd . +cd jgaeddert/liquid-dsp/ +./bootstrap.sh +./configure +make +sudo make install +popd + +# Soapy SDR +mkdir pothosware/ +git clone https://github.com/pothosware/SoapySDR.git pothosware/SoapySDR +mkdir pothosware/SoapySDR-build +cmake pothosware/SoapySDR pothosware/SoapySDR-build +pushd . +cd pothosware/SoapySDR-build +make +sudo make install +popd + +# CubicSDR +mkdir cjcliffe/CubicSDR-build +cmake cjcliffe/CubicSDR cjcliffe/CubicSDR-build +pushd . +cd cjcliffe/CubicSDR-build +make From 03e1284aaa5ca5492abd4c53290c98376a2c063c Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 21:49:59 -0500 Subject: [PATCH 05/21] Update .travis.yml --- .travis.yml | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/.travis.yml b/.travis.yml index 98c4de7..25554f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,34 +7,4 @@ addons: - libgtk-3-dev - freeglut3 - freeglut3-dev - -script: - # Liquid-DSP - mkdir jgaeddert/ - git clone https://github.com/jgaeddert/liquid-dsp.git jgaeddert/liquid-dsp - pushd . - cd jgaeddert/liquid-dsp/ - ./bootstrap.sh - ./configure - make - sudo make install - popd - - # Soapy SDR - mkdir pothosware/ - git clone https://github.com/pothosware/SoapySDR.git pothosware/SoapySDR - mkdir pothosware/SoapySDR-build - cmake pothosware/SoapySDR pothosware/SoapySDR-build - pushd . - cd pothosware/SoapySDR-build - make - sudo make install - popd - - # CubicSDR - mkdir cjcliffe/CubicSDR-build - cmake cjcliffe/CubicSDR cjcliffe/CubicSDR-build - pushd . - cd cjcliffe/CubicSDR-build - make - +script: travis-ci/build.sh From b539b8f50affb0fbc2946fe9a5dff8c29c190ddb Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 21:54:14 -0500 Subject: [PATCH 06/21] Update build.sh --- travis-ci/build.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index 3e61d02..4520793 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -1,5 +1,3 @@ -#!/bin/bash - # Liquid-DSP mkdir jgaeddert/ git clone https://github.com/jgaeddert/liquid-dsp.git jgaeddert/liquid-dsp From 1cd78bdfe210dd30c5024551adf71fa1f8f6c7d5 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 21:54:17 -0500 Subject: [PATCH 07/21] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 25554f2..4ab0a95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,4 @@ addons: - libgtk-3-dev - freeglut3 - freeglut3-dev -script: travis-ci/build.sh +script: bash travis-ci/build.sh From 4d941de46a1243cc9f79992feb3561b0af681255 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 21:56:40 -0500 Subject: [PATCH 08/21] Update build.sh --- travis-ci/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index 4520793..f187d7c 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -1,3 +1,4 @@ +cd $HOME # Liquid-DSP mkdir jgaeddert/ git clone https://github.com/jgaeddert/liquid-dsp.git jgaeddert/liquid-dsp @@ -7,8 +8,8 @@ cd jgaeddert/liquid-dsp/ ./configure make sudo make install -popd +cd $HOME # Soapy SDR mkdir pothosware/ git clone https://github.com/pothosware/SoapySDR.git pothosware/SoapySDR @@ -20,6 +21,7 @@ make sudo make install popd +cd $HOME # CubicSDR mkdir cjcliffe/CubicSDR-build cmake cjcliffe/CubicSDR cjcliffe/CubicSDR-build From ea294384ecc36582f7b694db8e8544a3cd8d1bf3 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 22:00:39 -0500 Subject: [PATCH 09/21] Update build.sh --- travis-ci/build.sh | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index f187d7c..ce7e6e8 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -1,30 +1,26 @@ -cd $HOME +cd $HOME/build # Liquid-DSP mkdir jgaeddert/ git clone https://github.com/jgaeddert/liquid-dsp.git jgaeddert/liquid-dsp -pushd . cd jgaeddert/liquid-dsp/ ./bootstrap.sh ./configure -make +make -j2 sudo make install -cd $HOME +cd $HOME/build # Soapy SDR mkdir pothosware/ git clone https://github.com/pothosware/SoapySDR.git pothosware/SoapySDR mkdir pothosware/SoapySDR-build cmake pothosware/SoapySDR pothosware/SoapySDR-build -pushd . cd pothosware/SoapySDR-build -make +make -j2 sudo make install -popd -cd $HOME +cd $HOME/build # CubicSDR mkdir cjcliffe/CubicSDR-build cmake cjcliffe/CubicSDR cjcliffe/CubicSDR-build -pushd . cd cjcliffe/CubicSDR-build -make +make -j2 From 02794adb59b56fc0928bda8e409dd36ece4b433a Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 22:07:44 -0500 Subject: [PATCH 10/21] Update build.sh --- travis-ci/build.sh | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index ce7e6e8..cfb0b1d 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -1,26 +1,28 @@ -cd $HOME/build # Liquid-DSP +cd $HOME/build mkdir jgaeddert/ -git clone https://github.com/jgaeddert/liquid-dsp.git jgaeddert/liquid-dsp -cd jgaeddert/liquid-dsp/ +cd jgaeddert/ +git clone https://github.com/jgaeddert/liquid-dsp.git +cd liquid-dsp/ ./bootstrap.sh ./configure make -j2 sudo make install -cd $HOME/build # Soapy SDR +cd $HOME/build mkdir pothosware/ -git clone https://github.com/pothosware/SoapySDR.git pothosware/SoapySDR -mkdir pothosware/SoapySDR-build -cmake pothosware/SoapySDR pothosware/SoapySDR-build -cd pothosware/SoapySDR-build +cd pothosware/ +git clone https://github.com/pothosware/SoapySDR.git +mkdir SoapySDR-build +cd SoapySDR-build +cmake ../SoapySDR -DCMAKE_BUILD_TYPE=Release make -j2 sudo make install -cd $HOME/build # CubicSDR +cd $HOME/build mkdir cjcliffe/CubicSDR-build -cmake cjcliffe/CubicSDR cjcliffe/CubicSDR-build cd cjcliffe/CubicSDR-build +cmake ../CubicSDR -DCMAKE_BUILD_TYPE=Release make -j2 From 3f0763ea6f9cd087715bda0267f70813fa437320 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 22:17:01 -0500 Subject: [PATCH 11/21] Update build.sh --- travis-ci/build.sh | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index cfb0b1d..82e322a 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -20,9 +20,23 @@ cmake ../SoapySDR -DCMAKE_BUILD_TYPE=Release make -j2 sudo make install +# wxWidgets - TODO: TRAVIS-CI CACHE! +cd $HOME/build +mkdir -p $HOME/build/wxWidgets/staticlib +cd wxWidgets +wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.2/wxWidgets-3.1.2.tar.bz2 +tar -xvjf wxWidgets-3.1.2.tar.bz2 +cd wxWidgets-3.1.2/ +./autogen.sh +./configure --with-opengl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x" +make -j2 +make install + + # CubicSDR cd $HOME/build mkdir cjcliffe/CubicSDR-build cd cjcliffe/CubicSDR-build -cmake ../CubicSDR -DCMAKE_BUILD_TYPE=Release +cmake ../CubicSDR -DCMAKE_BUILD_TYPE=Release -DwxWidgets_CONFIG_EXECUTABLE=$HOME/build/wxWidgets/staticlib/bin/wx-config make -j2 + From 7ff208f64df7d78d0f06baf5034981230e648e91 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 22:22:49 -0500 Subject: [PATCH 12/21] Update .travis.yml --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 4ab0a95..344a213 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,3 +8,6 @@ addons: - freeglut3 - freeglut3-dev script: bash travis-ci/build.sh +cache: + directories: + - wxWidgets From 8e9d5a240a55a2a50da181fc9ab67353d687daa6 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 22:26:13 -0500 Subject: [PATCH 13/21] Update build.sh --- travis-ci/build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index 82e322a..08e9fb4 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -20,8 +20,10 @@ cmake ../SoapySDR -DCMAKE_BUILD_TYPE=Release make -j2 sudo make install -# wxWidgets - TODO: TRAVIS-CI CACHE! +# wxWidgets cd $HOME/build +if [ ! -d $HOME/build/wxWidgets/staticlib ] +then mkdir -p $HOME/build/wxWidgets/staticlib cd wxWidgets wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.2/wxWidgets-3.1.2.tar.bz2 @@ -31,6 +33,7 @@ cd wxWidgets-3.1.2/ ./configure --with-opengl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x" make -j2 make install +fi # CubicSDR From 45ac3d383b177d813725a988b0857182f75eec74 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 22:27:55 -0500 Subject: [PATCH 14/21] Update build.sh --- travis-ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index 08e9fb4..d4c9f29 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -31,7 +31,7 @@ tar -xvjf wxWidgets-3.1.2.tar.bz2 cd wxWidgets-3.1.2/ ./autogen.sh ./configure --with-opengl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x" -make -j2 +make -j2 > /dev/null make install fi From 268c7c747d96f79224c29c1ceb0a258eed6abd52 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 22:30:14 -0500 Subject: [PATCH 15/21] Update build.sh --- travis-ci/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index d4c9f29..24995f8 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -21,9 +21,9 @@ make -j2 sudo make install # wxWidgets -cd $HOME/build -if [ ! -d $HOME/build/wxWidgets/staticlib ] +if [ ! -d "$HOME/build/wxWidgets/staticlib" ] then +cd $HOME/build mkdir -p $HOME/build/wxWidgets/staticlib cd wxWidgets wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.2/wxWidgets-3.1.2.tar.bz2 From 9f0d0bed71f9598548a30de5545551374bbcc57c Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 23:05:10 -0500 Subject: [PATCH 16/21] Update build.sh --- travis-ci/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index 24995f8..88f94e7 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -27,10 +27,12 @@ cd $HOME/build mkdir -p $HOME/build/wxWidgets/staticlib cd wxWidgets wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.2/wxWidgets-3.1.2.tar.bz2 -tar -xvjf wxWidgets-3.1.2.tar.bz2 +echo "Unpacking wxWidgets (output to null).." +tar -xvjf wxWidgets-3.1.2.tar.bz2 > /dev/null cd wxWidgets-3.1.2/ ./autogen.sh ./configure --with-opengl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x" +echo "Building wxWidgets (output to null).." make -j2 > /dev/null make install fi From 849b7ca112513a2dd1cde32dfb6c980dcebb702c Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 23:05:12 -0500 Subject: [PATCH 17/21] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 344a213..ea5bfed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,4 +10,4 @@ addons: script: bash travis-ci/build.sh cache: directories: - - wxWidgets + - /home/travis/build/wxWidgets/staticlib From 73aed6c9cc1bffd099c47115f4202522394362d6 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 23:32:36 -0500 Subject: [PATCH 18/21] Update build.sh --- travis-ci/build.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index 88f94e7..6bc6656 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -5,8 +5,10 @@ cd jgaeddert/ git clone https://github.com/jgaeddert/liquid-dsp.git cd liquid-dsp/ ./bootstrap.sh -./configure -make -j2 +echo "Configuring liquid-dsp.." +./configure > /dev/null +echo "Building liquid-dsp.." +make -j2 > /dev/null sudo make install # Soapy SDR @@ -17,22 +19,24 @@ git clone https://github.com/pothosware/SoapySDR.git mkdir SoapySDR-build cd SoapySDR-build cmake ../SoapySDR -DCMAKE_BUILD_TYPE=Release -make -j2 +echo "Building SoapySDR.." +make -j2 > /dev/null sudo make install # wxWidgets if [ ! -d "$HOME/build/wxWidgets/staticlib" ] then +echo "wxWidgets cache not found; building." cd $HOME/build mkdir -p $HOME/build/wxWidgets/staticlib cd wxWidgets wget https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.2/wxWidgets-3.1.2.tar.bz2 -echo "Unpacking wxWidgets (output to null).." +echo "Unpacking wxWidgets.." tar -xvjf wxWidgets-3.1.2.tar.bz2 > /dev/null cd wxWidgets-3.1.2/ ./autogen.sh ./configure --with-opengl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x" -echo "Building wxWidgets (output to null).." +echo "Building wxWidgets.." make -j2 > /dev/null make install fi From 9758b5670dcde575066703be84c4b09ade98f2cd Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Mon, 7 Jan 2019 23:40:08 -0500 Subject: [PATCH 19/21] Update build.sh --- travis-ci/build.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index 6bc6656..202bb0d 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -24,8 +24,7 @@ make -j2 > /dev/null sudo make install # wxWidgets -if [ ! -d "$HOME/build/wxWidgets/staticlib" ] -then +if [ ! -f "$HOME/build/wxWidgets/staticlib/bin/wx-config" ]; then echo "wxWidgets cache not found; building." cd $HOME/build mkdir -p $HOME/build/wxWidgets/staticlib From ee4862f595019459e83e302434f850ff4d6b1fc0 Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Tue, 8 Jan 2019 00:05:36 -0500 Subject: [PATCH 20/21] Update README.md --- README.md | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index db21c0c..d941e20 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,12 @@ -CubicSDR +CubicSDR ![Image Travis-CI Status](https://travis-ci.org/cjcliffe/CubicSDR.svg?branch=master) ======== Cross-Platform Software-Defined Radio Application -- Please see the [CubicSDR GitHub Wiki](https://github.com/cjcliffe/CubicSDR/wiki) for build instructions. -- Manual is available (work-in-progress) at [cubicsdr.readthedocs.io](http://cubicsdr.readthedocs.io). -- See also the current [CubicSDR Releases](https://github.com/cjcliffe/CubicSDR/releases) page for available binaries. +- The latest downloads are available on the [CubicSDR Releases](https://github.com/cjcliffe/CubicSDR/releases) page. +- Build instructions can be found at the [CubicSDR Wiki](https://github.com/cjcliffe/CubicSDR/wiki) page. +- Manual is available at [cubicsdr.readthedocs.io](http://cubicsdr.readthedocs.io). +- Manual contributions can be submitted to the [CubicSDR-Manual](https://github.com/cjcliffe/CubicSDR-Manual) repository. Utilizes: -------- @@ -24,11 +25,6 @@ Optional Libs: - FFTW3 (can be compiled into liquid-dsp if desired) (http://www.fftw.org/ -- https://github.com/FFTW/fftw3) - hamlib (https://github.com/Hamlib/Hamlib) -Features and Status: --------------------- - - Please see the issues on GitHub or visit https://github.com/cjcliffe/CubicSDR/wiki/CubicSDR-Roadmap-and-Ideas for more information. - - A manual is in development at https://github.com/cjcliffe/CubicSDR/issues/248 if you would like to contribute. - Recommended minimum requirements: -------------------- - Multi-core processor system with at least 1GB RAM. @@ -36,14 +32,12 @@ Recommended minimum requirements: - OSX 10.9+ for Mac binary releases. - Windows 7+ for 64 or 32-bit Windows binary releases. - Linux and other embedded distribution support yet to be indexed, known to at least work on Debian 8+ and Ubuntu 14+. - - Raspberry Pi2 support is being experimented with; earlier versions of CubicSDR known to work with Banana Pi. Target Platforms: ---------------- - [x] OSX - [x] Windows - [x] Linux - - [ ] HTML5 License: From c133f1294fcbc9a207f95995cd8674f68128ef3b Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Tue, 8 Jan 2019 00:44:06 -0500 Subject: [PATCH 21/21] Update build.sh travis-ci timeout due to lack of output; AKA don't redirect wxWidgets build output to null :) --- travis-ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis-ci/build.sh b/travis-ci/build.sh index 202bb0d..26ceaf6 100644 --- a/travis-ci/build.sh +++ b/travis-ci/build.sh @@ -36,7 +36,7 @@ cd wxWidgets-3.1.2/ ./autogen.sh ./configure --with-opengl --disable-shared --enable-monolithic --with-libjpeg --with-libtiff --with-libpng --with-zlib --disable-sdltest --enable-unicode --enable-display --enable-propgrid --disable-webkit --disable-webview --disable-webviewwebkit --prefix=`echo $HOME/build/wxWidgets/staticlib` CXXFLAGS="-std=c++0x" echo "Building wxWidgets.." -make -j2 > /dev/null +make -j2 make install fi