##// END OF EJS Templates
Now Works with Python 2 & 3, Qt 4 & 5....
Now Works with Python 2 & 3, Qt 4 & 5. CMake now generates different librariy files depending on the linked Qt/Python versions: PythonQt - Qt 4.x + Python 2.x PythonQt_3 - Qt 4.x + Python 3.x PythonQt5 - Qt 5.x + Python 2.x PythonQt5_3 - Qt 5.x + Python 3.x Fix Qt 4 build.

File last commit:

r205:706df4355685
r208:1476f2d2cf46
Show More
NicePyConsole.pro
35 lines | 761 B | text/idl | PrologLexer
Orochimarufan
Redo CMake build system, get Qt5 support...
r205 TARGET = NicePyConsole
TEMPLATE = app
DESTDIR = ../../lib
contains(QT_MAJOR_VERSION, 5) {
QT += widgets
}
mac:CONFIG-= app_bundle
include ( ../../build/common.prf )
include ( ../../build/PythonQt.prf )
include ( ../../build/PythonQt_QtAll.prf )
HEADERS += \
SimpleConsole.h \
NicePyConsole.h \
PygmentsHighlighter.h \
PythonCompleter.h \
PythonCompleterPopup.h
SOURCES += \
SimpleConsole.cpp \
NicePyConsole.cpp \
main.cpp \
PygmentsHighlighter.cpp \
PythonCompleter.cpp \
PythonCompleterPopup.cpp
OTHER_FILES += \
PygmentsHighlighter.py \
PythonCompleter.py \
module_completion.py