From b5c56e2ee0700ef5186c4989e35b578024b594b2 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Mon, 8 Jan 2024 09:48:02 +0100 Subject: [PATCH] cmake: add message log --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 281983d2c4..aa8ee666b0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -237,6 +237,7 @@ endif() ## GUROBI # Since it is dynamicaly loaded upon use, OFF is currently not supported. CMAKE_DEPENDENT_OPTION(USE_GUROBI "Use the Gurobi solver" ON "BUILD_CXX" OFF) +message(STATUS "Gurobi support: ${USE_GUROBI}") ## HiGHS # see: https://github.com/ERGO-Code/HiGHS @@ -275,6 +276,7 @@ message(STATUS "CPLEX support: ${USE_CPLEX}") ## XPRESS # Since it is dynamicaly loaded upon use, OFF is currently not supported. CMAKE_DEPENDENT_OPTION(USE_XPRESS "Use the Xpress solver" ON "BUILD_CXX" OFF) +message(STATUS "Xpress support: ${USE_XPRESS}") # Language specific options if(BUILD_CXX)