[Qt-interest] CONFIG(debug, debug|release) fails

Matthias Pospiech matthias.pospiech at gmx.de
Sat Jan 30 21:13:05 CET 2010


Matthias Pospiech schrieb:
> I am using this construct:
>
> LIBRARY_NAME = source-highlight
> CONFIG(debug, debug|release) {
>   win32:$$LIBRARY_NAME = $$join($$LIBRARY_NAME,,,d)
> }
>   
my fault. It must be:
CONFIG(debug, debug|release) {
  win32:LIBRARY_NAME = $$join(LIBRARY_NAME,,,d)
}


without the $$

Matthias



More information about the Qt-interest-old mailing list