src.pro
123 lines
| 3.6 KiB
| text/idl
|
PrologLexer
/ src / src.pro
Jeandet Alexis
|
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
|
r64 | include ( SocExplorerEngine/pythonQtOut/generated_cpp/PySocExplorerEngine/PySocExplorerEngine.pri ) | ||
Jeandet Alexis
|
r0 | include ( SocExplorerEngine/plugins/socexplorerplugin.prf ) | ||
INCLUDEPATH+=$${PWD} \ | ||||
$${PWD}/common \ | ||||
$${PWD}/common/qhexedit \ | ||||
$${PWD}/common/QCustomPlot \ | ||||
r52 | $${PWD}/common/genericBinaryFiles \ | |||
$${PWD}/common/genericBinaryFiles/elf \ | ||||
$${PWD}/common/genericBinaryFiles/srec \ | ||||
$${PWD}/common/genericBinaryFiles/BinFile \ | ||||
Jeandet Alexis
|
r0 | SocExplorerEngine/engine \ | ||
SocExplorerEngine/pluginloader \ | ||||
SocExplorerEngine/pluginsInterface \ | ||||
SocExplorerEngine/proxy \ | ||||
SocExplorerEngine/pluginManagerWdgt \ | ||||
SocExplorerEngine/plugins \ | ||||
SocExplorerEngine/RegisterMVS \ | ||||
SocExplorerEngine/XmlEngine \ | ||||
SocExplorerEngine/SOC \ | ||||
r73 | SocExplorerEngine/PeripheralWidget/src \ | |||
SocExplorerEngine/memtester | ||||
Jeandet Alexis
|
r0 | |||
win32:INCLUDEPATH+= \ | ||||
r52 | $${PWD}/common/genericBinaryFiles/elf/libelfWin32/include \ | |||
$${PWD}/common/genericBinaryFiles/elf/libelfWin32/include/libelf \ | ||||
Jeandet Alexis
|
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 \ | ||||
r79 | aboutsocexplorer.cpp \ | |||
regsExplorer/regsexplorer.cpp | ||||
Jeandet Alexis
|
r0 | |||
HEADERS += mainwindow.h \ | ||||
PyWdgt/pythonconsole.h \ | ||||
PyWdgt/pythonqtscriptingconsoledandd.h \ | ||||
dockablepluginmanager.h \ | ||||
toolbar.h \ | ||||
toolbarcontainer.h \ | ||||
socexplorer.h \ | ||||
SocExplorerEngine/plugins/socexplorerplugin.h \ | ||||
r79 | aboutsocexplorer.h \ | |||
regsExplorer/regsexplorer.h | ||||
Jeandet Alexis
|
r0 | |||
include ( NicePyConsole/NicePyConsole.pri) | ||||
Jeandet Alexis
|
r15 | win32{ | ||
RESOURCES = ../ressources/SocExplorer.qrc | ||||
} | ||||
unix{ | ||||
RESOURCES = ../ressources/SocExplorer.qrc | ||||
} | ||||
Jeandet Alexis
|
r0 | |||
TRANSLATIONS = ../translations/socexplorer_fr.ts \ | ||||
../translations/socexplorer_en.ts | ||||
r79 | FORMS += \ | |||
regsExplorer/regsexplorernew.ui | ||||
Jeandet Alexis
|
r0 | |||
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
|
r0 | |||
Jeandet Alexis
|
r66 | |||
r78 | ||||
r79 | ||||
r85 | ||||