##// END OF EJS Templates
New Plugin Manager and interface to remove all the previous crap!...
New Plugin Manager and interface to remove all the previous crap! Let's use Qt plugin API and make it much simpler.

File last commit:

r107:c459540a6dbd merge 0.6
r118:de85e8465e67 tip 1.0
Show More
src.pro
129 lines | 3.7 KiB | text/idl | PrologLexer
Jeandet Alexis
First init of SocExplorer Repository.
r0 #-------------------------------------------------
#
# Project created by QtCreator 2011-09-19T22:52:10
#
#-------------------------------------------------
SOCEXPLORER_ROOT = $${PWD}/..
include(../build_cfg/socexplorer.pri)
TARGET = socexplorer$${DEBUG_EXT}
TEMPLATE = app
CONFIG += pythonqt
QMAKE_LFLAGS_RELEASE += --enable-auto-import -mstackrealign
QMAKE_LFLAGS_DEBUG += --enable-auto-import -mstackrealign
include ( common/pythonQtOut/generated_cpp/PySocExplorer/PySocExplorer.pri )
Jeandet Alexis
Made possible to subclass from python plugin class....
r64 include ( SocExplorerEngine/pythonQtOut/generated_cpp/PySocExplorerEngine/PySocExplorerEngine.pri )
Jeandet Alexis
First init of SocExplorer Repository.
r0 include ( SocExplorerEngine/plugins/socexplorerplugin.prf )
INCLUDEPATH+=$${PWD} \
$${PWD}/common \
$${PWD}/common/qhexedit \
$${PWD}/common/QCustomPlot \
Sync /!\ do not use this revision
r52 $${PWD}/common/genericBinaryFiles \
$${PWD}/common/genericBinaryFiles/elf \
$${PWD}/common/genericBinaryFiles/srec \
$${PWD}/common/genericBinaryFiles/BinFile \
Jeandet Alexis
First init of SocExplorer Repository.
r0 SocExplorerEngine/engine \
SocExplorerEngine/pluginloader \
SocExplorerEngine/pluginsInterface \
SocExplorerEngine/proxy \
SocExplorerEngine/pluginManagerWdgt \
SocExplorerEngine/plugins \
SocExplorerEngine/RegisterMVS \
SocExplorerEngine/XmlEngine \
SocExplorerEngine/SOC \
Added some regs definitions for LFR instrument. Added memory size measurement.
r73 SocExplorerEngine/PeripheralWidget/src \
SocExplorerEngine/memtester
Jeandet Alexis
First init of SocExplorer Repository.
r0
win32:INCLUDEPATH+= \
Sync /!\ do not use this revision
r52 $${PWD}/common/genericBinaryFiles/elf/libelfWin32/include \
$${PWD}/common/genericBinaryFiles/elf/libelfWin32/include/libelf \
Jeandet Alexis
First init of SocExplorer Repository.
r0
RC_FILE = ../win32cfg/socexplorer.rc
unix:LIBS+=-L$${SOCEXPLORER_ROOT}/bin/linux -lsocexplorercommon$${DEBUG_EXT} -L$${SOCEXPLORER_ROOT}/bin/linux -lsocexplorerengine$${DEBUG_EXT}
win32-g++:LIBS += $${SOCEXPLORER_ROOT}/bin/win32/socexplorercommon$${DEBUG_EXT}.dll $${SOCEXPLORER_ROOT}/bin/win32/socexplorerengine$${DEBUG_EXT}.dll
unix{
translation.files = $${SOCEXPLORER_ROOT}/translations/socexplorer_fr.qm \
$${SOCEXPLORER_ROOT}/translations/socexplorer_en.qm
translation.path = $${SOCEXPLORER_TRANSLATION_INSTALL_PATH}
target.path = /usr/bin
INSTALLS += translation target
}
header.path = $$[QT_INSTALL_HEADERS]/SocExplorer/common
header.files = \
socexplorer.h
INSTALLS += header
SOURCES += main.cpp\
mainwindow.cpp \
PyWdgt/pythonconsole.cpp \
PyWdgt/pythonqtscriptingconsoledandd.cpp \
dockablepluginmanager.cpp \
toolbar.cpp \
toolbarcontainer.cpp \
New register explorer WIP...
r79 aboutsocexplorer.cpp \
WIP.
r91 regsExplorer/regsexplorer.cpp \
Jeandet Alexis
Working on session manager.
r92 socexplorercoresettingsgui.cpp \
sessionmanagerdialog.cpp
Jeandet Alexis
First init of SocExplorer Repository.
r0
HEADERS += mainwindow.h \
PyWdgt/pythonconsole.h \
PyWdgt/pythonqtscriptingconsoledandd.h \
dockablepluginmanager.h \
toolbar.h \
toolbarcontainer.h \
socexplorer.h \
SocExplorerEngine/plugins/socexplorerplugin.h \
New register explorer WIP...
r79 aboutsocexplorer.h \
WIP.
r91 regsExplorer/regsexplorer.h \
Jeandet Alexis
Working on session manager.
r92 socexplorercoresettingsgui.h \
sessionmanagerdialog.h
Jeandet Alexis
First init of SocExplorer Repository.
r0
include ( NicePyConsole/NicePyConsole.pri)
Jeandet Alexis
Sync
r15 win32{
RESOURCES = ../ressources/SocExplorer.qrc
}
unix{
RESOURCES = ../ressources/SocExplorer.qrc
}
Jeandet Alexis
First init of SocExplorer Repository.
r0
TRANSLATIONS = ../translations/socexplorer_fr.ts \
../translations/socexplorer_en.ts
New register explorer WIP...
r79 FORMS += \
WIP.
r91 regsExplorer/regsexplorernew.ui \
Jeandet Alexis
Working on session manager.
r92 socexplorercoresettingsgui.ui \
sessionmanagerdialog.ui
Jeandet Alexis
First init of SocExplorer Repository.
r0
Some fixes on python plugin interface.
r85 DISTFILES += \
../doc/PythonExamples/LEON3_LOAD.py \
../doc/PythonExamples/PythonPlugin.py \
../doc/PythonExamples/simpledemo1.py \
../doc/PythonExamples/SocExplorerPlot.py \
../doc/PythonExamples/SocExplorerPlot2.py \
../doc/PythonExamples/SocExplorerPlot3.py \
../doc/PythonExamples/tcpterminaldemo.py \
../doc/PythonExamples/tcpterminaldemo2.py
Jeandet Alexis
First init of SocExplorer Repository.
r0
Jeandet Alexis
Moved xml soc description in /usr/share/SocExplorer.
r66
New register explorer WIP.
r78
New register explorer WIP...
r79
Some fixes on python plugin interface.
r85