I want to build a project in which Third.exe depends on (and is built using) Second.h, and in which Second.h depends on (and is built using) First.php. In other words, I want the following to happen when I click on the Build button:
(1) An external program runs to generate Second.h from First.php. (In fact, the command line to do this is "PHP -q First.php >Second.h"
.
(2) Third.exe is built normally, but using Second.h as one of its inputs (hence rebuilding anything which depends on it).
How do I do this?
Jill
(1) An external program runs to generate Second.h from First.php. (In fact, the command line to do this is "PHP -q First.php >Second.h"
(2) Third.exe is built normally, but using Second.h as one of its inputs (hence rebuilding anything which depends on it).
How do I do this?
Jill