##// END OF EJS Templates
merge
merge

File last commit:

r48:b8dc7b62e9e7 merge default
r48:b8dc7b62e9e7 merge default
Show More
common.pro
135 lines | 3.3 KiB | text/idl | PrologLexer
Jeandet Alexis
First init of SocExplorer Repository.
r0 SOCEXPLORER_ROOT = \"$${PWD}/../..\"
include($${PWD}/../../build_cfg/socexplorer.pri)
Updated QCustomPlot to 1.2.1.
r33 include($${PWD}/lppserial/lppserial.pri)
Jeandet Alexis
First init of SocExplorer Repository.
r0
TEMPLATE = lib
TARGET = socexplorercommon$${DEBUG_EXT}
win32:CONFIG += dll
win32:CONFIG -= static
win32:INCLUDEPATH += $${PWD}/elf/libelfWin32/include
win32:INCLUDEPATH += $${PWD}/elf/libelfWin32/include/libelf
win32:DEFINES+=_ELF_WINDOWS_
Jeandet Alexis
Integrated lppserial lib to lppmoncommon as a sub-repository.
r19 DEFINES+=RS232_debug
Jeandet Alexis
First init of SocExplorer Repository.
r0
win32:LIBS += $${PWD}/elf/libelfWin32/bin/libelf.a
unix:LIBS += -lelf
QMAKE_LFLAGS_RELEASE += --enable-auto-import
QMAKE_LFLAGS_DEBUG += --enable-auto-import
target.path = $$[QT_INSTALL_LIBS]
isEmpty(target.path) {
error(can\'t get QT_INSTALL_LIBS)
}
header.path = $$[QT_INSTALL_HEADERS]/SocExplorer/common
header.files = \
memsizewdgt.h \
qhexspinbox.h \
qsvgicon.h \
qhexedit/qhexedit_p.h \
qhexedit/qhexedit.h \
qhexedit/xbytearray.h \
QCustomPlot/qcustomplot.h \
SocExplorerPlot.h \
tcp_terminal_client.h \
elf/elfinfowdgt.h \
elf/elfparser.h \
elf/elffile.h \
ElfFile classes WIP.
r37 elf/elffilewidget.h \
Jeandet Alexis
Integrated lppserial lib to lppmoncommon as a sub-repository.
r19 qipdialogbox.h \
Jeandet Alexis
Elf viewer almost completed.
r43 lppserial/src/RS232.h \
SREC file perser WIP.
r44 qtablewidgetintitem.h \
Jeandet Alexis
SREC File parser working....
r45 srec/srecfile.h \
srec/srecfilewidget.h \
added binary file loader, improved elf and srec loaders
r47 BinFile/binaryfile.h \
merge
r48 BinFile/binaryfilewidget.h \
fixed install mistake on SocExplorer common
r46 abstractbinfile.h
Jeandet Alexis
First init of SocExplorer Repository.
r0
win32{
elfheader.path = $$[QT_INSTALL_HEADERS]/SocExplorer/common/libelf
elfheader.files += \
elf/libelfWin32/include/libelf/byteswap.h \
elf/libelfWin32/include/libelf/errors.h \
elf/libelfWin32/include/libelf/gelf.h \
elf/libelfWin32/include/libelf/nlist.h \
elf/libelfWin32/include/libelf/sys_elf.h \
elf/libelfWin32/include/libelf/verneed.h \
elf/libelfWin32/include/libelf/elf_repl.h \
elf/libelfWin32/include/libelf/ext_types.h \
elf/libelfWin32/include/libelf/libelf.h \
elf/libelfWin32/include/libelf/private.h \
elf/libelfWin32/include/libelf/verdef.h
INSTALLS += elfheader
}
isEmpty(header.path) {
error(can\'t get QT_INSTALL_HEADERS)
}
INSTALLS += target header
Jeandet Alexis
SREC File parser working....
r45 INCLUDEPATH += QCustomPlot qhexedit srec
Jeandet Alexis
First init of SocExplorer Repository.
r0
HEADERS += \
memsizewdgt.h \
qhexspinbox.h \
qsvgicon.h \
qhexedit/qhexedit_p.h \
qhexedit/qhexedit.h \
qhexedit/xbytearray.h \
qhexedit/commands.h \
QCustomPlot/qcustomplot.h \
tcp_terminal_client.h \
elf/elfinfowdgt.h \
elf/elfparser.h \
elf/elffile.h \
qipdialogbox.h \
PySocExplorer.h \
ElfFile classes WIP.
r35 SocExplorerPlot.h \
Jeandet Alexis
Elf viewer almost completed.
r43 elf/elffilewidget.h \
SREC file perser WIP.
r44 qtablewidgetintitem.h \
Jeandet Alexis
SREC File parser working....
r45 srec/srecfile.h \
srec/srecfilewidget.h \
added binary file loader, improved elf and srec loaders
r47 abstractbinfile.h \
BinFile/binaryfile.h \
BinFile/binaryfilewidget.h
Jeandet Alexis
First init of SocExplorer Repository.
r0
SOURCES += \
memsizewdgt.cpp \
qhexspinbox.cpp \
qsvgicon.cpp \
qhexedit/qhexedit_p.cpp \
qhexedit/qhexedit.cpp \
qhexedit/xbytearray.cpp \
qhexedit/commands.cpp \
QCustomPlot/qcustomplot.cpp \
tcp_terminal_client.cpp \
elf/elfinfowdgt.cpp \
elf/elfparser.cpp \
elf/elffile.cpp \
qipdialogbox.cpp \
ElfFile classes WIP.
r35 SocExplorerPlot.cpp \
Jeandet Alexis
Elf viewer almost completed.
r43 elf/elffilewidget.cpp \
SREC file perser WIP.
r44 qtablewidgetintitem.cpp \
Jeandet Alexis
SREC File parser working....
r45 srec/srecfile.cpp \
srec/srecfilewidget.cpp \
added binary file loader, improved elf and srec loaders
r47 abstractbinfile.cpp \
BinFile/binaryfile.cpp \
BinFile/binaryfilewidget.cpp
ElfFile classes WIP.
r35
FORMS += \
Jeandet Alexis
SREC File parser working....
r45 elf/elffilewidget.ui \
added binary file loader, improved elf and srec loaders
r47 srec/srecfilewidget.ui \
BinFile/binaryfilewidget.ui
Jeandet Alexis
First init of SocExplorer Repository.
r0
Jeandet Alexis
Some Python wrapping improvment.
r39 OTHER_FILES += \
./pythongenerator.sh \
./pythonQtgeneratorCfg.txt
Jeandet Alexis
First init of SocExplorer Repository.
r0
Jeandet Alexis
Integrated lppserial lib to lppmoncommon as a sub-repository.
r19