Fixing test fs case sensitivity garbage files in the source dir (#61)

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

---------

Co-authored-by: DiGMi <digmi@convexum.com>
This commit is contained in:
Or Dagmi 2023-02-27 14:00:25 +02:00 committed by GitHub
parent 020831e5ad
commit f266584c9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -159,8 +159,8 @@ else()
endif() endif()
execute_process( execute_process(
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 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) file(GLOB TEST_FILE_LIST ${CMAKE_BINARY_DIR}/test_fs_support_*_sensitivity)
list(LENGTH TEST_FILE_LIST TEST_FILE_COUNT) list(LENGTH TEST_FILE_LIST TEST_FILE_COUNT)
if(TEST_FILE_COUNT EQUAL 2) if(TEST_FILE_COUNT EQUAL 2)