4d7921b819
hard-coding it in unix.conf was no particularly good idea for hopefully obvious reasons. the windows version is so far just a stub that does what the makespecs hard-coded - more doesn't seem worth the effort. the guys interested in x-building may want to rectify it at some point, but it's not going to be easy. Change-Id: I8fedd841a8416f8c0c57018752eae9510b5d00d0 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
17 lines
359 B
Plaintext
17 lines
359 B
Plaintext
#
|
|
# qmake configuration for common unix
|
|
#
|
|
|
|
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)
|