diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2008-07-01 16:45:28 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2008-07-01 16:45:28 +0200 |
commit | 2ada69fe971ecc8881d5eb01dfbf337996472c40 (patch) | |
tree | cfb5e62fb3b48399770c292ab73e0b16698de366 /lfhex.pro |
Initial import
Diffstat (limited to 'lfhex.pro')
-rw-r--r-- | lfhex.pro | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lfhex.pro b/lfhex.pro new file mode 100644 index 0000000..d67004e --- /dev/null +++ b/lfhex.pro @@ -0,0 +1,36 @@ +# $Id: lfhex.pro,v 1.1 2006/11/05 03:22:13 ganzhorn Exp $ +TARGET = lfhex +SOURCES = reader.cpp \ + save.cpp \ + translate.cpp \ + hexEditor.cpp \ + hexGui.cpp \ + grid.cpp \ + compareDlg.cpp \ + conversionDlg.cpp \ + cursor.cpp \ + delta.cpp \ + offsetConstraint.cpp \ + driver.cpp +HEADERS = offsetConstraint.hpp \ + hexGui.hpp \ + hexEditor.hpp \ + conversionDlg.hpp \ + compareDlg.hpp + +# The following defines are used to select large file offsets. +# If your OS does not support this comment it out. +DEFINES += _LARGEFILE_SOURCE _FILE_OFFSET_BITS=64 +# If your machine is big endian then uncomment the following, otherwise the +# offset labels will be in little endian (which some find hard to read). +# DEFINES += WORDS_BIGENDIAN +lfhex.path = /usr/local/bin +lfhex.files = lfhex +INSTALLS += lfhex +RESOURCES = images.qrc +YACCSOURCES += expr.y +LEXSOURCES += expr.l +QMAKE_LEX = flex +QMAKE_YACC = bison +QMAKE_YACCFLAGS = -d -b expr -p expr + |