When trying to define post build actions in a CMake build project(using add_custom_command(…) ) we noticed that the commands get executed before the execution of the HEX & BIN file generation as part of the add_bsp_executable(…)
As part of the POST_BUILD script was meant to copy those files to a holding folder, this doesn’t work as the files don’t exist yet (and if they exist, it’s a previous build version…)
Is there any way to execute custom commands after <span style=”text-decoration: underline;”>everything</span> VisualGDB does in the build sequence is finished ?