source: ogBrowser-Git/qtermwidget/src/src.pro

qndtest
Last change on this file was 8ab4781, checked in by adelcastillo <adelcastillo@…>, 15 years ago

Cambiando a qmake de nuevo.

git-svn-id: https://opengnsys.es/svn/trunk@518 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 1.1 KB
Line 
1TEMPLATE        = lib
2VERSION         = 0.1.0
3DESTDIR         = ../..
4
5TARGET          = qtermwidget
6
7CONFIG          += qt debug_and_release warn_on build_all staticlib #dll
8
9QT += core gui
10
11MOC_DIR         = ../../.moc
12
13CONFIG(debug, debug|release) {
14    OBJECTS_DIR = ../../.objs_d
15    TARGET      = qtermwidget_d
16} else {
17    OBJECTS_DIR = ../../.objs
18    TARGET      = qtermwidget
19}
20
21DEFINES         += HAVE_POSIX_OPENPT       
22#or DEFINES     += HAVE_GETPT
23
24HEADERS         = TerminalCharacterDecoder.h Character.h CharacterColor.h \
25                KeyboardTranslator.h \
26                ExtendedDefaultTranslator.h \
27                Screen.h History.h BlockArray.h konsole_wcwidth.h \
28                ScreenWindow.h \
29                Emulation.h \
30                Vt102Emulation.h TerminalDisplay.h Filter.h LineFont.h \
31                Pty.h kpty.h kpty_p.h k3process.h k3processcontroller.h \
32                Session.h ShellCommand.h \
33                qtermwidget.h
34
35SOURCES         = TerminalCharacterDecoder.cpp \
36                KeyboardTranslator.cpp \
37                Screen.cpp History.cpp BlockArray.cpp konsole_wcwidth.cpp \
38                ScreenWindow.cpp \
39                Emulation.cpp \
40                Vt102Emulation.cpp TerminalDisplay.cpp Filter.cpp \
41                Pty.cpp kpty.cpp k3process.cpp k3processcontroller.cpp \
42                Session.cpp ShellCommand.cpp \
43                qtermwidget.cpp
44
45           
46
47
48       
Note: See TracBrowser for help on using the repository browser.