remove obsolete CONFIGURE_DEPENDS backward compatibility hack

This commit is contained in:
Axel Kohlmeyer
2023-06-30 23:19:53 -04:00
parent 71b48253e8
commit b50fc0be78
13 changed files with 39 additions and 40 deletions

View File

@ -65,7 +65,7 @@ endfunction(validate_option)
# helper function for getting the most recently modified file or folder from a glob pattern
function(get_newest_file path variable)
file(GLOB _dirs ${CONFIGURE_DEPENDS} ${path})
file(GLOB _dirs CONFIGURE_DEPENDS ${path})
set(_besttime 2000-01-01T00:00:00)
set(_bestfile "<unknown>")
foreach(_dir ${_dirs})