Hello everyone,
I’ve tried to locally install and compile Slicer to use its modules for an extension, on which I will be working on.
However, I’m struggling with some issues and would appreciate some help.
My setup is the following:
- macOS: Mojave 10.14.6
- Xcode: 10.3
- cmake: 3.15.1
- qt: 5.13.0
- wget: 1.20.3
- gcc: clang 1001.0.46.4
I followed the instructions on the nightly build:
% checkout
cd $HOME/PycharmProjects
git clone git://github.com/Slicer/Slicer.git
cd Slicer
./Utilities/SetupForDevelopment.sh
% build
mkdir Slicer-SuperBuild
cd Slicer-SuperBuild
cmake -DQt5_DIR:PATH=/usr/local/opt/qt/bin -DSlicer_USE_PYTHONQT_WITH_OPENSSL:BOOL=ON ../Slicer
% compile
SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk make -j4
During compilation, the following fatal error occurs and stops the process:
[ 38%] No install step for 'DCMTK'
[ 38%] Completed 'DCMTK'
[ 38%] Built target DCMTK
make: *** [all] Error 2
Thank you in advance for any help or suggestions!