Skip to content

Commit

Permalink
Fix spellings in windows.cmake.
Browse files Browse the repository at this point in the history
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 4f20550, but I'm to
blame really, because I suggested the wrong spelling to him. Sorry
Arnaud :-)
  • Loading branch information
statham-arm committed Feb 9, 2024
1 parent 4f20550 commit 48cfd44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/windows.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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.")

0 comments on commit 48cfd44

Please sign in to comment.