equal
deleted
inserted
replaced
|
1 QT = core |
|
2 TEMPLATE = subdirs |
|
3 win32 { |
|
4 exists($$[QT_INSTALL_LIBS]/QtCore4.dll) { |
|
5 SUBDIRS = releaseplugin |
|
6 } |
|
7 exists($$[QT_INSTALL_LIBS]/QtCored4.dll) { |
|
8 SUBDIRS += debugplugin |
|
9 } |
|
10 } |
|
11 mac { |
|
12 CONFIG(debug, debug|release): { |
|
13 SUBDIRS += debugplugin |
|
14 tst_qplugin_pro.depends += debugplugin |
|
15 } |
|
16 CONFIG(release, debug|release): { |
|
17 SUBDIRS += releaseplugin |
|
18 tst_qplugin_pro.depends += releaseplugin |
|
19 } |
|
20 } |
|
21 !win32:!mac:{ |
|
22 SUBDIRS = debugplugin releaseplugin |
|
23 tst_qplugin_pro.depends += debugplugin releaseplugin |
|
24 } |
|
25 SUBDIRS += tst_qplugin.pro |
|
26 |
|
27 |