summaryrefslogtreecommitdiffstats
path: root/Tests/BuildDepends/Project/object_depends_check.cmake
blob: e00989288538a3cbb7e0bd4e023035e8b85a3ab9 (plain)
1
2
3
4
5
6
7
if(NOT EXISTS "${txt}" OR NOT EXISTS "${exe}")
  file(REMOVE "${out}")
elseif("${exe}" IS_NEWER_THAN "${txt}")
  file(WRITE "${out}" "1\n")
else()
  file(WRITE "${out}" "0\n")
endif()