https://github.com/ElsevierSoftwareX/SOFTX_2019_219
Raw File
Tip revision: 78d7695e70694df479099377176af419ae0c1782 authored by Konrad Werys on 09 March 2019, 17:32:43 UTC
first zip the data for the deployment, then clone the private repo
Tip revision: 78d7695
nr3.cmake

if(USE_NR3)
    SET(NR3_RECIPES_DIR  ${CMAKE_SOURCE_DIR}/../NumericalRecipes3/code)
    if(EXISTS ${NR3_RECIPES_DIR})
        include_directories (${NR3_RECIPES_DIR})
        # TODO: build NR3
        set(TOMATO_LIBS_TO_LINK ${TOMATO_LIBS_TO_LINK} NR2)
        message("Using NR3")
    else()
        set(USE_NR3 OFF)
    endif()
endif(USE_NR3)
back to top