I added a new #DEFINE
to my ".pro" file like this:
#DEFINE += SVN_V
now I would like to pass the output of the command "svnversion -n" to this SVN_V
, and here is what I did:
#DEFINE += "SVN_V = svnversion -n"
but the result is
error: no such file or directory
error: svnversion: no such file or directory
so, what am I missing here exactly? (Be aware I am working with Linux Ubuntu)