diff --git a/Build-OSX.md b/Build-OSX.md new file mode 100644 index 0000000..038ff47 --- /dev/null +++ b/Build-OSX.md @@ -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 +```