forked from commontk/PythonQt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsrc.pri
59 lines (52 loc) · 1.93 KB
/
src.pri
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
DEFINES += PYTHONQT_EXPORTS
INCLUDEPATH += $$PWD
# This was needed to work around "number of sections exceeded object file format limit" linker error
win32:QMAKE_CXXFLAGS += /bigobj
HEADERS += \
$$PWD/PythonQt.h \
$$PWD/PythonQtStdDecorators.h \
$$PWD/PythonQtClassInfo.h \
$$PWD/PythonQtImporter.h \
$$PWD/PythonQtObjectPtr.h \
$$PWD/PythonQtProperty.h \
$$PWD/PythonQtSignal.h \
$$PWD/PythonQtSlot.h \
$$PWD/PythonQtSlotDecorator.h \
$$PWD/PythonQtStdIn.h \
$$PWD/PythonQtStdOut.h \
$$PWD/PythonQtMisc.h \
$$PWD/PythonQtMethodInfo.h \
$$PWD/PythonQtImportFileInterface.h \
$$PWD/PythonQtConversion.h \
$$PWD/PythonQtSignalReceiver.h \
$$PWD/PythonQtInstanceWrapper.h \
$$PWD/PythonQtClassWrapper.h \
$$PWD/PythonQtCppWrapperFactory.h \
$$PWD/PythonQtQFileImporter.h \
$$PWD/PythonQtQFileImporter.h \
$$PWD/PythonQtVariants.h \
$$PWD/gui/PythonQtScriptingConsole.h \
$$PWD/PythonQtSystem.h \
$$PWD/PythonQtUtils.h \
$$PWD/PythonQtBoolResult.h
SOURCES += \
$$PWD/PythonQtStdDecorators.cpp \
$$PWD/PythonQt.cpp \
$$PWD/PythonQtClassInfo.cpp \
$$PWD/PythonQtImporter.cpp \
$$PWD/PythonQtObjectPtr.cpp \
$$PWD/PythonQtProperty.cpp \
$$PWD/PythonQtStdIn.cpp \
$$PWD/PythonQtStdOut.cpp \
$$PWD/PythonQtSignal.cpp \
$$PWD/PythonQtSlot.cpp \
$$PWD/PythonQtSlotDecorator.cpp \
$$PWD/PythonQtMisc.cpp \
$$PWD/PythonQtMethodInfo.cpp \
$$PWD/PythonQtConversion.cpp \
$$PWD/PythonQtSignalReceiver.cpp \
$$PWD/PythonQtInstanceWrapper.cpp \
$$PWD/PythonQtQFileImporter.cpp \
$$PWD/PythonQtClassWrapper.cpp \
$$PWD/PythonQtBoolResult.cpp \
$$PWD/gui/PythonQtScriptingConsole.cpp \