Rearranged the order of things

Tobias Wissmueller 2016-01-26 10:58:27 +01:00
parent 521a0f7033
commit 603dc457a6
1 changed files with 26 additions and 28 deletions

@ -1,8 +1,32 @@
# OSX Build Instructions - (/w MacPorts):
### Install XCode
### Prerequisites
To get started you'll need to install XCode so that you have the compiler and build tools
You need to have XCode and macports / homebrew installed.
### Install dependencies fftw-3 and liquid-dsp
You can use MacPorts or Brew for this part.
##### MacPorts:
```
ccliffe$ sudo port install fftw-3-single liquid-dsp cmake
.. installing ..
```
##### Homebrew:
```
ccliffe$ brew install fftw automake cmake
.. installing ..
ccliffe$ git clone https://github.com/jgaeddert/liquid-dsp.git
ccliffe$ cd liquid-dsp
liquid-dsp$ ./bootstrap.sh
liquid-dsp$ ./configure
.. configuring ..
liquid-dsp$ make
.. building ..
liquid-dsp$ sudo make install
.. installing ..
```
### Build wxWidgets
@ -34,32 +58,6 @@ sudo make install
SoapySDRUtil --info
```
### Install dependencies fftw-3 and liquid-dsp
You can use MacPorts or Brew for this part.
##### MacPorts:
```
ccliffe$ sudo port install fftw-3-single liquid-dsp cmake
.. installing ..
```
##### Homebrew:
```
ccliffe$ brew install fftw automake cmake
.. installing ..
ccliffe$ git clone https://github.com/jgaeddert/liquid-dsp.git
ccliffe$ cd liquid-dsp
liquid-dsp$ ./bootstrap.sh
liquid-dsp$ ./configure
.. configuring ..
liquid-dsp$ make
.. building ..
liquid-dsp$ sudo make install
.. installing ..
```
### Build CubicSDR
```
ccliffe$ git clone https://github.com/cjcliffe/CubicSDR.git