Fixing test fs case sensitivity minor issue where files where not created in the CMAKE_BINARY_DIR

This commit is contained in:
DiGMi 2023-02-26 11:58:06 +02:00
parent 020831e5ad
commit c5d2e1fb99

View File

@ -159,8 +159,8 @@ else()
endif()
execute_process(
COMMAND ${CMAKE_COMMAND} -E touch test_fs_support_case_sensitivity
COMMAND ${CMAKE_COMMAND} -E touch test_fs_support_CASE_sensitivity)
COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_BINARY_DIR}/test_fs_support_case_sensitivity
COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_BINARY_DIR}/test_fs_support_CASE_sensitivity)
file(GLOB TEST_FILE_LIST ${CMAKE_BINARY_DIR}/test_fs_support_*_sensitivity)
list(LENGTH TEST_FILE_LIST TEST_FILE_COUNT)
if(TEST_FILE_COUNT EQUAL 2)