f734599629
make sure that all specs define QMAKE_{PREFIX,EXTENSION}_{SH,STATIC}LIB, and adjust the code to make halfways consistent use of these variables, in particular on windows; Win32MakefileGenerator::getLibTarget() is gone as a result, as is QMAKE_CYGWIN_SHLIB. still, tons of hardcoded "lib" references remain in the unix generator, because no-one cares. Change-Id: I6ccf37cc562f6584221c94fa27b2834412e4e4ca Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
18 lines
437 B
Plaintext
18 lines
437 B
Plaintext
#
|
|
# qmake configuration for common unix
|
|
#
|
|
|
|
QMAKE_PLATFORM += unix posix
|
|
|
|
QMAKE_LEX = flex
|
|
QMAKE_LEXFLAGS +=
|
|
QMAKE_YACC = yacc
|
|
QMAKE_YACCFLAGS += -d
|
|
QMAKE_YACCFLAGS_MANGLE += -p $base -b $base
|
|
QMAKE_YACC_HEADER = $base.tab.h
|
|
QMAKE_YACC_SOURCE = $base.tab.c
|
|
QMAKE_PREFIX_SHLIB = lib
|
|
QMAKE_EXTENSION_SHLIB = so
|
|
QMAKE_PREFIX_STATICLIB = lib
|
|
QMAKE_EXTENSION_STATICLIB = a
|