Hi,
How to specify winscw specific options in Qt project file.?
For example a project requires to link libraries differently for winscw and armv5:
ARMV5 :
LIBS += -lLib1
WINSCW :
LIBS += -lLib2
Thanks much.
Suresh.
Hi,
How to specify winscw specific options in Qt project file.?
For example a project requires to link libraries differently for winscw and armv5:
ARMV5 :
LIBS += -lLib1
WINSCW :
LIBS += -lLib2
Thanks much.
Suresh.
Would this help you?
Code:myBlock = \ "$${LITERAL_HASH}ifdef WINSCW" \ "LIBRARY Lib2.lib" \ "$${LITERAL_HASH}else" \ "LIBRARY Lib1.lib" \ "$${LITERAL_HASH}endif" MMP_RULES += myBlock