mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-03 20:29:56 -06:00
In commit a6fee09484 (file: Add CONFIGURE subcommand, 2020-03-06,
v3.18.0-rc1~584^2) we accidentally treated relative path outputs
with respect to the current working directory. Treat them with
respect to the current binary directory instead.
Fixes: #20885
5 lines
168 B
CMake
5 lines
168 B
CMake
set(expected "${RunCMake_TEST_BINARY_DIR}/SubDir/out.txt")
|
|
if(NOT EXISTS "${expected}")
|
|
set(RunCMake_TEST_FAILED "Expected file not created:\n ${expected}")
|
|
endif()
|