summaryrefslogtreecommitdiffstats
path: root/tests/auto/qscriptextensionplugin/test/test.pro
blob: 223dafa356feee63740ff07e87931754f1cfe2cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
load(qttest_p4)

QT = core script
SOURCES = ../tst_qscriptextensionplugin.cpp
CONFIG -= app_bundle
symbian {
    LIBS += -lstaticplugin.lib
    simplePlugin.files = qscriptextension_simpleplugin.dll
    simplePlugin.path = plugins/script
    DEPLOYMENT += simplePlugin
} else {
    LIBS += -L../plugins/script -lstaticplugin
}

TARGET = tst_qscriptextensionplugin
CONFIG(debug_and_release) {
  CONFIG(debug, debug|release) {
    DESTDIR = ../debug
  } else {
    DESTDIR = ../release
  }
} else {
  DESTDIR = ..
}