Skip to content
Snippets Groups Projects
CMakeLists.txt 1 KiB
Newer Older
  • Learn to ignore specific revisions
  • ## CMake project file for hallac_container
    
    ################################################################################
    ## PROJECT: hallac_container
    ################################################################################
    cmake_minimum_required (VERSION 3.8)
    
    project (hallac_container VERSION 1.8.0)
    
    Sylvester Joosten's avatar
    Sylvester Joosten committed
    ################################################################################
    ## The name of our container
    ################################################################################
    
    set(CONTAINER hallac-${PROJECT_VERSION}.sif)
    
    Sylvester Joosten's avatar
    Sylvester Joosten committed
    
    
    ################################################################################
    ## CMAKE Settings 
    ################################################################################
    include(cmake/options.cmake)
    
    ################################################################################
    ## Subdirectories
    ################################################################################
    
    add_subdirectory(containers)
    
    Sylvester Joosten's avatar
    Sylvester Joosten committed
    add_subdirectory(modulefiles)
    add_subdirectory(scripts)