-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKISLab.pro
More file actions
39 lines (24 loc) · 706 Bytes
/
KISLab.pro
File metadata and controls
39 lines (24 loc) · 706 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
34
35
36
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = KISLab
TEMPLATE = app
DESTDIR = ./build
INCLUDEPATH += ./include \
./external/qtermwidget/lib \
./external/QScintilla/Qt4Qt5
#DEPENDPATH=./include
OBJECTS_DIR= ./obj
MOC_DIR = ./moc
LIBS += -L./external/QScintilla/Qt4Qt5/ -lqscintilla2
LIBS += -L./external/qtermwidget/build/ -lqtermwidget5
SOURCES += src/main.cpp \
src/mainwindow.cpp \
src/terminal.cpp \
src/browser.cpp \
src/editor.cpp
HEADERS += include/mainwindow.h \
include/terminal.h \
include/browser.h \
include/editor.h
RESOURCES += \
resources/application.qrc