CMakeLists.txt uses CMake's string(TIMESTAMP) feature to put the timestamp of the build into the executable. This makes the build nonreproducible. SOURCE_DATE_EPOCH can be used to hack around this but it's better to not need it. I suggest using the date of the Git commit instead, which can be found with git show --quiet --format=%ci --date=short
CMakeLists.txt uses CMake's
string(TIMESTAMP)feature to put the timestamp of the build into the executable. This makes the build nonreproducible. SOURCE_DATE_EPOCH can be used to hack around this but it's better to not need it. I suggest using the date of the Git commit instead, which can be found withgit show --quiet --format=%ci --date=short