jaym
23-Aug-2008, 05:22 AM
I have a problem with the Post-build event command line
This is the command line generated by the EurekaLog Addin
IF EXIST "$(DevEnvDir)\ecc32.exe" "$(DevEnvDir)\ecc32.exe" "$(ProjectPath)" "$(TargetPath)"
I have to modify it to this to get a successfull build. (i.e., remove all the double quotes)
IF EXIST $(DevEnvDir)\ecc32.exe $(DevEnvDir)\ecc32.exe $(ProjectPath) $(TargetPath)
Cheers
Jay
This is the command line generated by the EurekaLog Addin
IF EXIST "$(DevEnvDir)\ecc32.exe" "$(DevEnvDir)\ecc32.exe" "$(ProjectPath)" "$(TargetPath)"
I have to modify it to this to get a successfull build. (i.e., remove all the double quotes)
IF EXIST $(DevEnvDir)\ecc32.exe $(DevEnvDir)\ecc32.exe $(ProjectPath) $(TargetPath)
Cheers
Jay