From 3a1f5116649b1c82f200a9c1f5636f8b68d89278 Mon Sep 17 00:00:00 2001 From: Andreas Hubel Date: Sun, 11 Sep 2016 22:13:51 +0200 Subject: [PATCH 1/2] Add liquid-dsp to platform specific build instructions fixes #78 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4234f37..d92f6fe 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ inspectrum is a tool for analysing captured signals, primarily from software-def ## Building on OSX - Homebrew - brew install qt5 fftw cmake pkg-config + brew install qt5 fftw cmake pkg-config liquid-dsp mkdir build cd build CMAKE_PREFIX_PATH=$(brew --prefix qt5)/lib/cmake cmake .. @@ -32,7 +32,7 @@ inspectrum is a tool for analysing captured signals, primarily from software-def ## Building on OSX - Macports - sudo port install fftw-3-single cmake pkgconfig qt5 + sudo port install qt5 fftw-3-single cmake pkgconfig liquid-dsp mkdir build cd build cmake .. From 15432748f7a6b2aff5201f5c7a08585b61298d5e Mon Sep 17 00:00:00 2001 From: Andreas Hubel Date: Sun, 11 Sep 2016 22:23:47 +0200 Subject: [PATCH 2/2] fixes the qt5 issues reported in #40 and #60 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d92f6fe..3636838 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ inspectrum is a tool for analysing captured signals, primarily from software-def brew install qt5 fftw cmake pkg-config liquid-dsp mkdir build cd build - CMAKE_PREFIX_PATH=$(brew --prefix qt5)/lib/cmake cmake .. + CMAKE_PREFIX_PATH=$(brew --prefix qt5)/lib/cmake cmake .. -DCMAKE_CXX_FLAGS:STRING=-I/usr/local/opt/qt5/include .. make install ## Building on OSX - Macports