From 0c3e245ff3c9a54bb66df3d5ce398365752f4346 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Wed, 18 Jan 2023 20:46:51 -0500 Subject: [PATCH] nanodbc - CMakeLists.txt - Provide a helpful message to the developer to indicate the two odbc options to install if neither is found --- thirdparty/nanodbc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdparty/nanodbc/CMakeLists.txt b/thirdparty/nanodbc/CMakeLists.txt index 23ca6a6a89..2d7c48d98e 100644 --- a/thirdparty/nanodbc/CMakeLists.txt +++ b/thirdparty/nanodbc/CMakeLists.txt @@ -135,7 +135,7 @@ if(UNIX) endif() if(NOT ODBC_CONFIG) - message(FATAL_ERROR "can not find a suitable odbc driver manager") + message(FATAL_ERROR "can not find a suitable odbc driver manager. Please install either 'unixODBC' or 'iODBC'.") endif() message(STATUS "ODBC compile flags: ${ODBC_CFLAGS}")