CMake: Change one CMAKE_CURRENT_SOURCE_DIR to CMAKE_CURRENT_LIST_DIR.

In this case they have identical values.
This commit is contained in:
Lasse Collin 2023-10-26 21:44:42 +03:00
parent e67aaf698d
commit 08d12595f4
1 changed files with 1 additions and 1 deletions

View File

@ -1498,7 +1498,7 @@ if(BUILD_TESTING)
#
# Set the return code for skipped tests to match Automake convention.
set_tests_properties("${TEST}" PROPERTIES
ENVIRONMENT "srcdir=${CMAKE_CURRENT_LIST_DIR}/tests"
ENVIRONMENT "srcdir=${CMAKE_CURRENT_SOURCE_DIR}/tests"
SKIP_RETURN_CODE 77
)
endforeach()