From 7bb4d92337a59bff365b2ef322525bb5a5b4a65f Mon Sep 17 00:00:00 2001 From: Cyril Bouvier Date: Tue, 12 Mar 2024 11:22:22 +0100 Subject: [PATCH] Fix typo in CMake script --- lp_lib_wrapper/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lp_lib_wrapper/CMakeLists.txt b/lp_lib_wrapper/CMakeLists.txt index b541549e3..54dba3162 100644 --- a/lp_lib_wrapper/CMakeLists.txt +++ b/lp_lib_wrapper/CMakeLists.txt @@ -7,7 +7,7 @@ set_property(CACHE LP_LIB PROPERTY STRINGS ${LP_LIB_LIST}) list(FIND LP_LIB_LIST ${LP_LIB} is_valid) if (is_valid LESS 0) - message (FATAL_ERROR "Unsupported library for interval arithmetic: ${LP_LIB}") + message (FATAL_ERROR "Unsupported library for linear programming: ${LP_LIB}") else () message (STATUS "Library for linear programming: ${LP_LIB}") endif ()