unify spelling of CMAKE_INSTALL_INCLUDEDIR

Following GNUInstallDirs defaults, see also CMake docs:
https://cmake.org/cmake/help/latest/command/install.html
This commit is contained in:
H. Vetinari 2024-02-20 21:20:06 +11:00
parent 26f9f58806
commit 270120812e

View File

@ -65,8 +65,8 @@ if (NOT DEFINED CMAKE_INSTALL_LIBDIR)
set(CMAKE_INSTALL_LIBDIR lib)
endif()
if (NOT DEFINED CMAKE_INSTALL_INCDIR)
set(CMAKE_INSTALL_INCDIR include)
if (NOT DEFINED CMAKE_INSTALL_INCLUDEDIR)
set(CMAKE_INSTALL_INCLUDEDIR include)
endif()
if (UNIX)