How to use "-set" option in qmake?
Qt Creator and other tools
2
Posts
2
Posters
3.4k
Views
1
Watching
-
wrote on 18 Mar 2011, 21:26 last edited by
Hello!
.
.
I try run qmake with setting any variable and it value. According to the documentation, for do it is used option "-set".
.
Options:
-set <prop> <value> Set persistent property
.
http://apidocs.meego.com/1.1/core/html/qt4/qmake-environment-reference.html#installs
.
.
I run command:
.
qmake ./meego/mytetra.pro -r -spec linux-g++ -set TARGET_OS_IS_MEEGO 1 CONFIG +=debug
.
.
And qmake show error:
.
***Unknown option -set
.
.
How to run qmake with "-set" option? -
wrote on 18 Mar 2011, 22:40 last edited by
You have to call qmake -set separate as single command and not in combination with other options.
1/2