## Notes from the wiki on developping on macOS : https://git.chocolatnoir.net/tomography/ufo-core/-/wikis/Developping-(on-MacOS)

IPREF_DEV=${HOME}/.local/ufo-dev
mkdir build && cd build
cmake -DWITH_OCLFFT=OFF -DWITH_CONTRIB=ON -DCMAKE_INSTALL_PREFIX=${IPREF_DEV} -DINCLUDE_DIRECTORIES=${IPREF_DEV}/include ..
make -j 8
make install


## To test, using the ufo-testing repository : https://plmlab.math.cnrs.fr/tomogroup/ufo-testing
export PATH=${IPREF_DEV}/bin:/opt/local/bin:${PATH}
export LD_LIBRARY_PATH=${IPREF_DEV}/lib
export UFO_PLUGIN_PATH=${IPREF_DEV}/lib/ufo
export UFO_KERNEL_PATH=${IPREF_DEV}/share/ufo

export G_MESSAGES_DEBUG=all
export UFO_DEVICES=1




## To build from scratch :
rm -rf build
mkdir build
cd build
cmake .. -DWITH_CONTRIB=ON -DCMAKE_INSTALL_PREFIX=${CENV}
