cmake

Summary

  • Module Name: cmake

  • Support Level: Primary Support

  • Software Access Level: Open Access

  • Home Page: https://cmake.org

Software Description

No description provided.

General Linux

To load this module for use in a Linux environment, you can run the command:

module load cmake

Depending on where you are working, there may be more than one version of cmake available. To see which modules are available for loading you can run:

module avail cmake

Slurm Example

#!/bin/bash
#SBATCH --job-name="rfm_RunCMAKETest_job"
#SBATCH --ntasks=1
#SBATCH --ntasks-per-node=1
#SBATCH --output=rfm_RunCMAKETest_job.out
#SBATCH --error=rfm_RunCMAKETest_job.err
#SBATCH --time=0:10:0
#SBATCH -p msismall

module load cmake/3.10.2
wget https://public.s3.msi.umn.edu/reframe/sw/cmake/armadillo-3.910.0.tar.gz
tar xvzf armadillo-3.910.0.tar.gz
cd armadillo-3.910.0
mkdir build && cd build
cmake ..