-rw-r--r-- | noncore/apps/opie-console/opie-console.pro | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/opie-console.pro b/noncore/apps/opie-console/opie-console.pro index 5a352e0..0b5df20 100644 --- a/noncore/apps/opie-console/opie-console.pro +++ b/noncore/apps/opie-console/opie-console.pro | |||
@@ -1,32 +1,47 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = io_layer.h io_serial.h \ | 4 | HEADERS = io_layer.h io_serial.h \ |
5 | file_layer.h \ | 5 | file_layer.h \ |
6 | metafactory.h \ | 6 | metafactory.h \ |
7 | session.h \ | 7 | session.h \ |
8 | mainwindow.h \ | 8 | mainwindow.h \ |
9 | profile.h \ | 9 | profile.h \ |
10 | profileconfig.h \ | 10 | profileconfig.h \ |
11 | profilemanager.h \ | 11 | profilemanager.h \ |
12 | configwidget.h \ | 12 | configwidget.h \ |
13 | tabwidget.h \ | 13 | tabwidget.h \ |
14 | configdialog.h \ | 14 | configdialog.h \ |
15 | profileeditordialog.h | 15 | profileeditordialog.h \ |
16 | emulation_layer.h \ | ||
17 | widget.h \ | ||
18 | vt102emulation.h \ | ||
19 | common.h \ | ||
20 | history.h \ | ||
21 | screen.h \ | ||
22 | keytrans.h | ||
23 | |||
16 | SOURCES = io_layer.cpp io_serial.cpp \ | 24 | SOURCES = io_layer.cpp io_serial.cpp \ |
17 | file_layer.cpp main.cpp \ | 25 | file_layer.cpp main.cpp \ |
18 | metafactory.cpp \ | 26 | metafactory.cpp \ |
19 | session.cpp \ | 27 | session.cpp \ |
20 | mainwindow.cpp \ | 28 | mainwindow.cpp \ |
21 | profile.cpp \ | 29 | profile.cpp \ |
22 | profileconfig.cpp \ | 30 | profileconfig.cpp \ |
23 | profilemanager.cpp \ | 31 | profilemanager.cpp \ |
24 | tabwidget.cpp \ | 32 | tabwidget.cpp \ |
25 | configdialog.cpp \ | 33 | configdialog.cpp \ |
26 | profileeditordialog.cpp | 34 | profileeditordialog.cpp \ |
35 | emulation_layer.cpp \ | ||
36 | widget.cpp \ | ||
37 | vt102emulation.cpp \ | ||
38 | history.cpp \ | ||
39 | screen.cpp \ | ||
40 | keytrans.cpp | ||
41 | |||
27 | INTERFACES = configurebase.ui editbase.ui | 42 | INTERFACES = configurebase.ui editbase.ui |
28 | INCLUDEPATH += $(OPIEDIR)/include | 43 | INCLUDEPATH += $(OPIEDIR)/include |
29 | DEPENDPATH += $(OPIEDIR)/include | 44 | DEPENDPATH += $(OPIEDIR)/include |
30 | LIBS += -lqpe -lopie | 45 | LIBS += -lqpe -lopie |
31 | TARGET = opie-console | 46 | TARGET = opie-console |
32 | 47 | ||