Created Build OSX (markdown)

Charles J. Cliffe 2015-01-28 00:48:44 -05:00
parent 035ef83d56
commit e9e4a47457
1 changed files with 19 additions and 0 deletions

19
Build-OSX.md Normal file

@ -0,0 +1,19 @@
# Mac Build Instructions (using MacPorts):
```
ccliffe$ sudo port install rtl-sdr fftw-3-single liquid-dsp wxWidgets-3.0-libcxx
.. installing ..
ccliffe$ git clone https://github.com/cjcliffe/CubicSDR.git
.. cloning ..
ccliffe$ cd CubicSDR/cmake_build
ccliffe$ cmake ../ -DwxWidgets_CONFIG_EXECUTABLE=/opt/local/Library/Frameworks/wxWidgets.framework/Versions/wxWidgets/3.0-libcxx/bin/wx-config
... generating ...
-- Build files have been written to: .../CubicSDR/cmake_build
ccliffe$ make
.. compiling ..
ccliffe$ ./CubicSDR
```
If for some reason your wx-config is elsewhere (built manually or otherwise) you can find it via:
```
ccliffe$ locate wx-config
/opt/local/Library/Frameworks/wxWidgets.framework/Versions/wxWidgets/3.0-libcxx/bin/wx-config
```