Skip to content

OSX build instructions

Maxime Chamberland edited this page Mar 15, 2018 · 11 revisions

Use these instructions to build the Fibernavigator on OSX (10.12).

NOTE: we always recommend using the prebuilt versions available on the Releases page. Use those instructions if prebuilt versions do not work for you or if you want to develop new features.

Using HOMEBREW (https://brew.sh/) -----You will need the XCODE compiler (from app store, or from brew).

You will need to install CMake, WxWidgets (3.0.3) and glew using Brew.

brew install cmake glew wxwidgets

Next, create a build directory within the FiberNavigator directory (at the same level of the /src folder)

From within the build folder, type ccmake ../src

Uncheck the build-lightweight option, and check for build ZOOM HD if using a 4K/HD screen.

Hit Configure, and Generate

Type make

Enjoy :)

Using MACPORTS -----sudo port install glew wxWidgets-3.0 cmake

sudo port select wxWidgets wxWidgets-3.0

cd fibernavigator mkdir build cd build ccmake ../src make