KWSys 2024-12-12 (60c63c1f)

Code extracted from:

    https://gitlab.kitware.com/utils/kwsys.git

at commit 60c63c1fa7f288132353498faa9733d2d6cb7b0e (master).

Upstream Shortlog
-----------------

Brad King (1):
      62ad438e Glob: Use case-insensitive matching on CYGWIN

Peter Kokot (1):
      967b2120 Remove legacy unused IMMEDIATE CMake keyword
This commit is contained in:
KWSys Upstream
2024-12-12 12:52:07 -05:00
committed by Brad King
parent 295f4b1de1
commit 8884161843
2 changed files with 4 additions and 4 deletions

View File

@@ -684,7 +684,7 @@ foreach(c IN LISTS KWSYS_CLASSES)
# Configure the header for this class.
configure_file(${PROJECT_SOURCE_DIR}/${c}.hxx.in ${KWSYS_HEADER_DIR}/${c}.hxx
@ONLY IMMEDIATE)
@ONLY)
set(KWSYS_CXX_SRCS ${KWSYS_CXX_SRCS} ${KWSYS_HEADER_DIR}/${c}.hxx)
# Create an install target for the header.
@@ -699,7 +699,7 @@ endforeach()
foreach(h IN LISTS KWSYS_H_FILES)
# Configure the header into the given directory.
configure_file(${PROJECT_SOURCE_DIR}/${h}.h.in ${KWSYS_HEADER_DIR}/${h}.h
@ONLY IMMEDIATE)
@ONLY)
set(KWSYS_C_SRCS ${KWSYS_C_SRCS} ${KWSYS_HEADER_DIR}/${h}.h)
# Create an install target for the header.
@@ -714,7 +714,7 @@ endforeach()
foreach(h IN LISTS KWSYS_HXX_FILES)
# Configure the header into the given directory.
configure_file(${PROJECT_SOURCE_DIR}/${h}.hxx.in ${KWSYS_HEADER_DIR}/${h}.hxx
@ONLY IMMEDIATE)
@ONLY)
set(KWSYS_CXX_SRCS ${KWSYS_CXX_SRCS} ${KWSYS_HEADER_DIR}/${h}.hxx)
# Create an install target for the header.

View File

@@ -27,7 +27,7 @@
#include <cstdio>
#include <cstring>
namespace KWSYS_NAMESPACE {
#if defined(_WIN32) || defined(__APPLE__)
#if defined(_WIN32) || defined(__CYGWIN__) || defined(__APPLE__)
// On Windows and Apple, no difference between lower and upper case
# define KWSYS_GLOB_CASE_INDEPENDENT
#endif