SPLF2003 is a Fortran 2003 library for B-Splines/NURBS and Computer Aided Design Algorithms.
- cmake (version 2.8 or higher)
- Fortran 2003 Compiler (gfortran version 4.7 or higher, or appropriate ifort)
We first install the Fortran library/headers using cmake (by default the installation path is $PWD/../usr):
mkdir build && cd build cmake -DCMAKE_Fortran_FLAGS="-fPIC" .. make && make install && cd ..