On my computer Visual Studio reported error in Pre Build event in ttpdlg module when compiling project for the first time.
Command failing is:
$(OutDir)\svnrev.exe $(SolutionDir)..\libs\svn\bin\svnversion.exe $(SolutionDir)..\ $(ProjectDir)svnversion.h
Error indicate that command has not been interpreted correctly because of space in path.
Following modification to the command line has been tested with success
(It looks a little bit nasty because "" around the arguments are stripped off several times when handled by svnrev internally):
"$(OutDir)\svnrev.exe" "\"\"$(SolutionDir)..\libs\svn\bin\svnversion.exe"\" "\"$(SolutionDir)..\\\\"\"\" "$(ProjectDir)svnversion.h"
Please consider if You want to implement this change.
On my computer Visual Studio reported error in Pre Build event in ttpdlg module when compiling project for the first time.
Command failing is: $(OutDir)\svnrev.exe $(SolutionDir)..\libs\svn\bin\svnversion.exe $(SolutionDir)..\ $(ProjectDir)svnversion.h
Error indicate that command has not been interpreted correctly because of space in path.
Following modification to the command line has been tested with success (It looks a little bit nasty because "" around the arguments are stripped off several times when handled by svnrev internally): "$(OutDir)\svnrev.exe" "\"\"$(SolutionDir)..\libs\svn\bin\svnversion.exe"\" "\"$(SolutionDir)..\\\\"\"\" "$(ProjectDir)svnversion.h"
Please consider if You want to implement this change.