From 7dfac51fe17c6f2141879c138389c223c056444e Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Fri, 1 Sep 2023 22:09:49 -0400 Subject: [PATCH] Silence cmake warning about lowercase string --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e1333597b..467ba1907c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, you may find one here: + # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html # or you may search the http://www.gnu.org website for the version 2 license, # or you may write to the Free Software Foundation, Inc., @@ -996,7 +997,7 @@ endif() if( KICAD_USE_SENTRY ) - set( KICAD_SENTRY_DSN "" CACHE string "The sentry DSN used with sentry integration" ) + set( KICAD_SENTRY_DSN "" CACHE STRING "The sentry DSN used with sentry integration" ) if ( KICAD_SENTRY_DSN STREQUAL "") message( FATAL_ERROR "Sentry DSN must be configured with KICAD_USE_SENTRY" ) endif()