...
The C and Fortran compilers are chosen by CMake. (This can be overwritten by setting the variables CC and FC, on the command line before you call cmake, to the preferred compiler). Further the variables CMAKE_C_FLAGSor CMAKE_Fortran_FLAGS can be used to set compiler flags for optimisation or debugging.
Include Page | ||||
---|---|---|---|---|
|
Compiling the code
After the CMake command has run successfully, the user can compile the library by typing make in the build directory.
...