Usually with qmake we do it like this:
qmake Code:
BUILD_FOR_CUST1 { DEFINES += "__COMPILE_FOR_CUST1__=1" }To copy to clipboard, switch view to plain text mode
and if we want to activate the clause we write:
qmake Code:
CONFIG += BUILD_FOR_CUST1To copy to clipboard, switch view to plain text mode
or just call "qmake CONFIG+=BUILD_FOR_CUST1".
Alternatively you can use features (files with prf extension).
Bookmarks