From 2c5ec74aed487120eb813d49dc1a89a3012975df Mon Sep 17 00:00:00 2001 From: Kyle Shores Date: Wed, 14 Jun 2023 15:10:01 -0500 Subject: [PATCH] fixing cmake variable name (#90) --- CMakeLists.txt | 2 +- Dockerfile.nvhpc | 2 +- test/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c42fa7955..cddb89bce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ option(ENABLE_OPENMP "Enable OpenMP support" OFF) option(ENABLE_COVERAGE "Enable code coverage output" OFF) option(ENABLE_MEMCHECK "Enable memory checking in tests" OFF) option(ENABLE_JSON "Enable json configureation file reading" OFF) -option(ENABLE_REGESSION_TESTS "Enable regression tests against the old pre-processed version of micm" ON) +option(ENABLE_REGRESSION_TESTS "Enable regression tests against the old pre-processed version of micm" ON) option(BUILD_DOCS "Build the documentation" OFF) ################################################################################ diff --git a/Dockerfile.nvhpc b/Dockerfile.nvhpc index 078cbcedc..aacc95a86 100644 --- a/Dockerfile.nvhpc +++ b/Dockerfile.nvhpc @@ -60,7 +60,7 @@ RUN mkdir /build \ && cmake \ -D CMAKE_BUILD_TYPE=debug \ -D ENABLE_CLANG_TIDY:BOOL=FALSE \ - -D ENABLE_REGESSION_TESTS:BOOL=FALSE \ + -D ENABLE_REGRESSION_TESTS:BOOL=FALSE \ ../micm \ && make -j 8 install diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index d272a9163..ae4be7f11 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -3,7 +3,7 @@ set(CMAKE_CXX_CLANG_TIDY "") add_subdirectory(unit) -if(ENABLE_REGESSION_TESTS) +if(ENABLE_REGRESSION_TESTS) add_subdirectory(regression) endif()