Revision a3d351fb6de40a4726ce169414d81715662c2728 authored by Konrad Werys on 16 November 2018, 12:33:56 UTC, committed by Konrad Werys on 16 November 2018, 12:33:56 UTC
1 parent 02d6226
Raw File
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(OxSmolli2_LIBS_TO_LINK ${OxSmolli2_LIBS_TO_LINK} NR2)
        message("Using NR3")
    else()
        set(USE_NR3 OFF)
    endif()
endif(USE_NR3)
back to top