Oops, never mind. It works now, simply with backticks.
@ All who care...
If you have Subversion installed on your system just add the following to "Build Options/Other options" for your Target:
-DSVN_REV=`svnversion -n .`
You can then use the extracted Revision number in your program like:
#define _STR(x) #x
#define STR(x) _STR(x)
printf("Revision: %s\n", STR(SVN_REV))
Note that the revision string is "extracted" when your Project folder is no "working SVN copy"
:D