Salome HOME
define the skeloeton for presentations
authorCédric Aguerre <cedric.aguerre@edf.fr>
Tue, 21 Jul 2015 15:04:44 +0000 (17:04 +0200)
committerCédric Aguerre <cedric.aguerre@edf.fr>
Tue, 21 Jul 2015 15:04:44 +0000 (17:04 +0200)
idl/CMakeLists.txt
src/MEDOP/cmp/CMakeLists.txt
src/MEDOP/tui/CMakeLists.txt
src/MEDOP/tui/medpresentation/CMakeLists.txt [new file with mode: 0644]

index 63dbe73187fb5df28a9f59dd1a3cda9055a66bbe..9f47f7c2bc0a48992a3a7e462fc8e29932a678d5 100644 (file)
@@ -31,6 +31,7 @@ SET(SalomeIDLMED_IDLSOURCES
   MEDDataManager.idl
   MEDCalculator.idl
   MEDEventListener.idl
+  MEDPresentationManager.idl
   MEDOPFactory.idl
 )
 
index e6a2f1bb2003d0042d3219a4fd954aaa48dfa5b9..8c74dbc769e3ec7bafb9e15bbfe5fa8c51e60c22 100644 (file)
@@ -35,8 +35,10 @@ INCLUDE_DIRECTORIES(
 SET(MEDOPFactoryEngine_SOURCES
   MEDDataManager_i.cxx
   MEDCalculator_i.cxx
+  MEDPresentationManager_i.cxx
   MEDOPFactory_i.cxx
 )
+
 SET(COMMON_LIBS
   medloader
   SalomeIDLMED
index f1af30c4ec78321d21063cebdd8b95a360c345db..9e4b18ab7096d3cd2b5b8ead509e6d5c12714eae 100644 (file)
@@ -18,3 +18,4 @@
 #
 
 ADD_SUBDIRECTORY(xmedpy)
+ADD_SUBDIRECTORY(medpresentation)
diff --git a/src/MEDOP/tui/medpresentation/CMakeLists.txt b/src/MEDOP/tui/medpresentation/CMakeLists.txt
new file mode 100644 (file)
index 0000000..c76faf0
--- /dev/null
@@ -0,0 +1,25 @@
+# Copyright (C) 2012-2015  CEA/DEN, EDF R&D
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+#
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+#
+
+SET(PYFILES_TO_INSTALL
+  __init__.py
+  medpresentation.py
+  )
+
+SALOME_INSTALL_SCRIPTS("${PYFILES_TO_INSTALL}" ${SALOME_INSTALL_PYTHON}/medpresentation)