forked from JaDogg/expressPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PyRun.pro
52 lines (40 loc) · 1.35 KB
/
PyRun.pro
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
#-------------------------------------------------
#
# Project created by QtCreator 2014-11-22T18:40:41
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = expressPython
TEMPLATE = app
SOURCES += main.cpp\
UI/mainview.cpp \
CodeEditor/pythonsyntaxhighlighter.cpp \
CodeEditor/codeeditor.cpp \
Features/snippets.cpp \
PythonAccess/emb.cpp \
PythonAccess/pythonworker.cpp \
CodeEditor/codelineedit.cpp \
Features/xquestion.cpp \
Features/xtute.cpp
HEADERS += UI/mainview.h \
CodeEditor/pythonsyntaxhighlighter.h \
CodeEditor/codeeditor.h \
Features/snippets.h \
PythonAccess/emb.h \
PythonAccess/pythonworker.h \
CodeEditor/codelineedit.h \
Features/xquestion.h \
Features/xtute.h
FORMS += UI/mainview.ui
RESOURCES += \
PyRunResources.qrc
RC_FILE = WindowsResources/win_rsrc.rc
win32: LIBS += -LC:\Users\Bhathiya\AppData\Local\Programs\Python\Python36-32\libs\ -lpython36
win32: INCLUDEPATH += C:\Users\Bhathiya\AppData\Local\Programs\Python\Python36-32\include
win32: DEPENDPATH += C:\Users\Bhathiya\AppData\Local\Programs\Python\Python36-32\include
greaterThan(QT_MAJOR_VERSION, 4){
CONFIG += c++11
} else {
QMAKE_CXXFLAGS += -std=c++11 -Wpedantic
}