Is there a way to test if one file is newer than another file?  Something along the lines if &quot;cmake -E compare_files&quot;, but for time stamps?<br><br>I need to copy dlls into the binary directory, but I want to do it conservatively.  Also I need different versions for Debug and Release, so add_custom_command doesn&#39;t work due to the lack of configuration specific dependencies.<br>

<br>Ultimately, what I think I&#39;ll have to do is generate a script that takes the build configuration as a parameter and runs copy_if_different as a post build command for a given target.<br><br>James<br>