How to add compilation line for C++ like this?
-D'SVN_REV="$(shell svnversion -n .)"'
I need to use in in Qt project. I tried to add this:
QMAKE_CXXFLAGS += -D'SVN_REV="$(shell svnversion -n .)"'
But it doesn't work at all
What am i doing wrong?