##// END OF EJS Templates
Start Python 3.x Port...
Start Python 3.x Port The main python interpreter works, BUT: Many tests still fail, Qt integration is broken

File last commit:

r205:706df4355685
r206:316b4928f53f
Show More
src.pro
27 lines | 493 B | text/idl | PrologLexer
ezust
reorganized SVN tree into branches, tags and trunk...
r0 # --------- PythonQt profile -------------------
# Last changed by $Author: florian $
# $Id: PythonQt.pro 35381 2006-03-16 13:05:52Z florian $
# $Source$
# --------------------------------------------------
TARGET = PythonQt
TEMPLATE = lib
DESTDIR = ../lib
CONFIG += qt dll
florianlink
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
r16 CONFIG -= flat
ezust
reorganized SVN tree into branches, tags and trunk...
r0
Orochimarufan
Redo CMake build system, get Qt5 support...
r205 contains(QT_MAJOR_VERSION, 5) {
QT += widgets
}
mac {
OTHER_FILES += ../scripts/osx-fix-dylib.sh
}
ezust
reorganized SVN tree into branches, tags and trunk...
r0 include ( ../build/common.prf )
Orochimarufan
Redo CMake build system, get Qt5 support...
r205 include ( ../build/python.prf )
ezust
reorganized SVN tree into branches, tags and trunk...
r0
include ( src.pri )