Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
BuildDepends
/
Project
/
object_depends_check.cmake
blob: e00989288538a3cbb7e0bd4e023035e8b85a3ab9 [
file
] [
log
] [
blame
]
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
()