author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Thu, 27 May 2010 13:40:48 +0300 | |
changeset 23 | 89e065397ea6 |
parent 19 | fcece45ef507 |
child 30 | 5dc02b23752f |
permissions | -rw-r--r-- |
0 | 1 |
load(default_post) |
2 |
||
3 |
contains(TEMPLATE, ".*app") { |
|
4 |
contains(CONFIG, stdbinary) { |
|
5 |
QMAKE_LIBS += |
|
6 |
} else:contains(QT, gui):contains(CONFIG,qt) { |
|
7 |
S60MAIN_LIBS = -leuser |
|
19
fcece45ef507
Revision: 201015
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
8 |
QMAKE_LIBS += -lqtmain$${QT_LIBINFIX}.lib $$S60MAIN_LIBS |
0 | 9 |
} else { |
10 |
QMAKE_LIBS += $$QMAKE_LIBS_QT_ENTRY |
|
11 |
} |
|
12 |
} |
|
13 |
contains(TEMPLATE, lib): { |
|
14 |
contains(CONFIG, staticlib)|contains(CONFIG, static): { |
|
15 |
# Static libs should not have LIBRARY statements in S60 |
|
16 |
QMAKE_LIBS = |
|
17 |
# Static libs do not need def files |
|
18 |
MMP_RULES -= EXPORTUNFROZEN |
|
19 |
} |
|
20 |
contains(CONFIG, plugin):!contains(CONFIG, stdbinary): { |
|
21 |
# Plugins based on normal libraries have predefined def file |
|
22 |
MMP_RULES -= EXPORTUNFROZEN |
|
23 |
} |
|
24 |
} else { |
|
25 |
# Applications don't need this |
|
26 |
MMP_RULES -= EXPORTUNFROZEN |
|
27 |
} |
|
28 |
||
29 |
contains(TEMPLATE, ".*app"):contains(QT, gui):contains(CONFIG,qt) { |
|
30 |
load(application_icon.prf) |
|
31 |
} |