forked from MeVisLab/pythonqt
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtests.pro
More file actions
33 lines (25 loc) · 904 Bytes
/
tests.pro
File metadata and controls
33 lines (25 loc) · 904 Bytes
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
26
27
28
29
30
31
32
33
# --------- PythonQtTest profile -------------------
# Last changed by $Author: florian $
# $Id: PythonQt.pro 35381 2006-03-16 13:05:52Z florian $
# $Source$
# --------------------------------------------------
TARGET = PythonQtTest
TEMPLATE = app
QMAKE_RPATHDIR += $$DESTDIR
QT += testlib
CONFIG += qt testcase cmdline exceptions testcase_no_bundle no_testcase_installs
#Workaround for MinGW build. Qt incorrectly sets it to empty string on Win32 for bash
mingw: TEST_TARGET_DIR = .
DEFINES += QT_NO_CAST_TO_ASCII
gcc: QMAKE_CXXFLAGS += -pedantic -Winit-self -Wuninitialized
QT += widgets
include ( ../build/common.prf )
include ( ../build/PythonQt.prf )
include ( ../build/PythonQt_QtAll.prf )
HEADERS += \
PythonQtTestCleanup.h \
PythonQtTests.h
SOURCES += \
PythonQtTestCleanup.cpp \
PythonQtTestMain.cpp \
PythonQtTests.cpp