Hello,
I have first_target building executable binary and it’s CMakeLists.txt contains add_custom_command(TARGET first_target POST_BUILD…)
Parent CMakeLists.txt contains second_target which is dependent on first_target. My question is:
Does building of second_target begin after binary executable is linked or after custom command is executed ?