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