diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-07-07 12:37:21 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-07-07 12:37:21 +0200 |
commit | febaef00017278ac65cb7e285564ebc9d5dadfe5 (patch) | |
tree | 940ac1386117785496334432dc03a3c0cfa02de5 /qhexedit2/src/qhexedit.pro | |
parent | f41f2dce18111c923c331a3fe6900edee731d040 (diff) | |
parent | 004b73ed7ef33cb407897f7eccbec5f3861f99d7 (diff) |
Merge commit '004b73ed7ef33cb407897f7eccbec5f3861f99d7' as 'qhexedit2'
Diffstat (limited to 'qhexedit2/src/qhexedit.pro')
-rw-r--r-- | qhexedit2/src/qhexedit.pro | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/qhexedit2/src/qhexedit.pro b/qhexedit2/src/qhexedit.pro new file mode 100644 index 0000000..2a94016 --- /dev/null +++ b/qhexedit2/src/qhexedit.pro @@ -0,0 +1,27 @@ + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +QT += core gui +TEMPLATE = lib + +VERSION = 4.2.0 + +DEFINES += QHEXEDIT_EXPORTS + +HEADERS = \ + qhexedit.h \ + chunks.h \ + commands.h + + +SOURCES = \ + qhexedit.cpp \ + chunks.cpp \ + commands.cpp + +Release:TARGET = qhexedit +Debug:TARGET = qhexeditd + + +unix:DESTDIR = /usr/lib +win32:DESTDIR = ../lib |