Salome HOME
Modifying build procedure to expose PyConsole and PyInterp as tools.
authorabn <adrien.bruneton@cea.fr>
Fri, 20 May 2016 12:51:16 +0000 (14:51 +0200)
committerabn <adrien.bruneton@cea.fr>
Tue, 21 Jun 2016 07:45:09 +0000 (09:45 +0200)
commitcb00147d363db68c5cefe98d1615be8f49af1772
treec3ab859dc65dda7dee65b88ea85d9c64c9fd935b
parent10e0da56fa531668d9611190327953536a0c3cf6
Modifying build procedure to expose PyConsole and PyInterp as tools.
62 files changed:
src/CMakeLists.txt
src/LightApp/CMakeLists.txt
src/PVServerService/CMakeLists.txt
src/PyConsole/CMakeLists.txt [deleted file]
src/PyConsole/PyConsole.h [deleted file]
src/PyConsole/PyConsole_Console.cxx [deleted file]
src/PyConsole/PyConsole_Console.h [deleted file]
src/PyConsole/PyConsole_Editor.cxx [deleted file]
src/PyConsole/PyConsole_Editor.h [deleted file]
src/PyConsole/PyConsole_Event.cxx [deleted file]
src/PyConsole/PyConsole_Event.h [deleted file]
src/PyConsole/PyConsole_Interp.cxx [deleted file]
src/PyConsole/PyConsole_Interp.h [deleted file]
src/PyConsole/PyConsole_Request.cxx [deleted file]
src/PyConsole/PyConsole_Request.h [deleted file]
src/PyConsole/resources/PyConsole_msg_en.ts [deleted file]
src/PyConsole/resources/PyConsole_msg_fr.ts [deleted file]
src/PyConsole/resources/PyConsole_msg_ja.ts [deleted file]
src/PyInterp/CMakeLists.txt [deleted file]
src/PyInterp/PyInterp.h [deleted file]
src/PyInterp/PyInterp_Dispatcher.cxx [deleted file]
src/PyInterp/PyInterp_Dispatcher.h [deleted file]
src/PyInterp/PyInterp_Event.cxx [deleted file]
src/PyInterp/PyInterp_Event.h [deleted file]
src/PyInterp/PyInterp_Interp.cxx [deleted file]
src/PyInterp/PyInterp_Interp.h [deleted file]
src/PyInterp/PyInterp_Request.cxx [deleted file]
src/PyInterp/PyInterp_Request.h [deleted file]
src/PyInterp/PyInterp_Utils.h [deleted file]
src/SALOME_PYQT/SALOME_PYQT_GUI/CMakeLists.txt
src/SALOME_PYQT/SALOME_PYQT_GUILight/CMakeLists.txt
src/SALOME_PYQT/SalomePyQt/CMakeLists.txt
src/SalomeApp/CMakeLists.txt
tools/CMakeLists.txt
tools/PyConsole/CMakeLists.txt [new file with mode: 0644]
tools/PyConsole/src/CMakeLists.txt [new file with mode: 0755]
tools/PyConsole/src/PyConsole.h [new file with mode: 0644]
tools/PyConsole/src/PyConsole_Console.cxx [new file with mode: 0644]
tools/PyConsole/src/PyConsole_Console.h [new file with mode: 0644]
tools/PyConsole/src/PyConsole_Editor.cxx [new file with mode: 0644]
tools/PyConsole/src/PyConsole_Editor.h [new file with mode: 0644]
tools/PyConsole/src/PyConsole_Event.cxx [new file with mode: 0644]
tools/PyConsole/src/PyConsole_Event.h [new file with mode: 0644]
tools/PyConsole/src/PyConsole_Interp.cxx [new file with mode: 0644]
tools/PyConsole/src/PyConsole_Interp.h [new file with mode: 0644]
tools/PyConsole/src/PyConsole_Request.cxx [new file with mode: 0644]
tools/PyConsole/src/PyConsole_Request.h [new file with mode: 0644]
tools/PyConsole/src/resources/PyConsole_msg_en.ts [new file with mode: 0644]
tools/PyConsole/src/resources/PyConsole_msg_fr.ts [new file with mode: 0644]
tools/PyConsole/src/resources/PyConsole_msg_ja.ts [new file with mode: 0644]
tools/PyInterp/CMakeLists.txt [new file with mode: 0644]
tools/PyInterp/src/CMakeLists.txt [new file with mode: 0755]
tools/PyInterp/src/PyInterp.h [new file with mode: 0755]
tools/PyInterp/src/PyInterp_Dispatcher.cxx [new file with mode: 0755]
tools/PyInterp/src/PyInterp_Dispatcher.h [new file with mode: 0755]
tools/PyInterp/src/PyInterp_Event.cxx [new file with mode: 0644]
tools/PyInterp/src/PyInterp_Event.h [new file with mode: 0644]
tools/PyInterp/src/PyInterp_Interp.cxx [new file with mode: 0644]
tools/PyInterp/src/PyInterp_Interp.h [new file with mode: 0644]
tools/PyInterp/src/PyInterp_Request.cxx [new file with mode: 0644]
tools/PyInterp/src/PyInterp_Request.h [new file with mode: 0644]
tools/PyInterp/src/PyInterp_Utils.h [new file with mode: 0644]