On Wed, Oct 28, 2015 at 10:47 PM, Kornel Benko <kor...@lyx.org> wrote: > Am Mittwoch, 28. Oktober 2015 um 22:12:19, schrieb Vincent van Ravesteijn > <v...@lyx.org> >> Using CMake version 2.8.10, all tex2lyx tests fail due to the use of >> >> file( TIMESTAMP .. ) >> >> in runtests.cmake. The TIMESTAMP command is available since CMake 2.8.11. >> >> Vincent > > Hm, should we now increase the minimum required cmake version? > Or is omitting reconfiguration for cmake versions < 2.8.11 better? >
What about using: if(file1 IS_NEWER_THAN file2) ? https://cmake.org/cmake/help/v2.8.10/cmake.html#command:if Vincent