From c5d2e1fb99c779465ce5626b55c762484b5fbb1f Mon Sep 17 00:00:00 2001 From: DiGMi Date: Sun, 26 Feb 2023 11:58:06 +0200 Subject: [PATCH] Fixing test fs case sensitivity minor issue where files where not created in the CMAKE_BINARY_DIR --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6083d35..1e60c18 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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)