From 48cfd44173e87f395ffb519b2a950c33063dd104 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Fri, 9 Feb 2024 16:31:31 +0000 Subject: [PATCH] Fix spellings in windows.cmake. cmake gave me an error this afternoon pointing out that 'STR' is not a recommended spelling, and it was assuming we meant 'STRING'. This was introduced by Arnaud's commit 4f205501bd9bb0d, but I'm to blame really, because I suggested the wrong spelling to him. Sorry Arnaud :-) --- cmake/windows.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/windows.cmake b/cmake/windows.cmake index a7f92c0..e37a19b 100644 --- a/cmake/windows.cmake +++ b/cmake/windows.cmake @@ -83,6 +83,6 @@ set(HAVE_LIBINTL 0) # install directory. So we define some of the same variables that # GNUInstallDirs would have defined. set(CMAKE_INSTALL_LIBDIR "lib" - CACHE STR "Subdirectory of the install dir to put the libtarmac library.") + CACHE STRING "Subdirectory of the install dir to put the libtarmac library.") set(CMAKE_INSTALL_INCLUDEDIR "include" - CACHE STR "Subdirectory of the install dir to put the libtarmac headers.") + CACHE STRING "Subdirectory of the install dir to put the libtarmac headers.")