204176483c
not strictly necessary, but nicer. QMAKE_PLATFORM (and thus CONFIG) now also contains the name of the OS, and its family (if applicable, e.g., bsd). this also adds more feature search paths. Change-Id: I3ab971e6e3b2b32cae53b95e4bc67a86688bc5cb Reviewed-by: Qt Doc Bot <qt_docbot@qt-project.org> Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
19 lines
389 B
Plaintext
19 lines
389 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_PREFIX_STATICLIB = lib
|
|
QMAKE_EXTENSION_STATICLIB = a
|
|
|
|
include(shell-unix.conf)
|