summaryrefslogtreecommitdiff
path: root/tests/auto/qscriptextensionplugin/test/test.pro
blob: 8bb0b9a2447bc7898abfe8249ab1199bf0d18ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TARGET = tst_test
CONFIG += testcase

QT = core script testlib
SOURCES = ../tst_qscriptextensionplugin.cpp
CONFIG -= app_bundle
LIBS += -L../plugins/script -lstaticplugin

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

DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0