Salome HOME
Merge changes from V7_main branch: 8024dcf415
[tools/yacsgen.git] / Examples / hxx1 / component.py
1 # Copyright (C) 2009-2013  EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 import os
21 from module_generator import Generator,Module,Service
22 from module_generator import CPPComponent,PYComponent,HXX2SALOMEComponent
23 class Invalid(Exception):
24     pass
25
26 kernel_root_dir=os.environ["KERNEL_ROOT_DIR"]
27 gui_root_dir=os.environ["GUI_ROOT_DIR"]
28 yacs_root_dir=os.environ["YACS_ROOT_DIR"]
29 med_root_dir=os.environ["MED_ROOT_DIR"]
30 geom_root_dir=os.environ["GEOM_ROOT_DIR"]
31 prereq_file=os.path.join(kernel_root_dir,"..","env_products.sh")
32 if not os.path.exists(prereq_file):
33     prereq_file=os.path.join(kernel_root_dir,"..","..","env_products.sh")
34 if not os.path.exists(prereq_file):
35     raise Invalid("prerequisite file env_products.sh not found. please replace it manually in component.py")
36
37 #import context from ..
38 context={'update':1,
39          "makeflags":"",
40          "prerequisites":prereq_file,
41          "kernel":kernel_root_dir,
42          "gui":gui_root_dir,
43          "geom":geom_root_dir,
44          "med":med_root_dir,
45          "yacs":yacs_root_dir,
46         }
47
48 cwd=os.getcwd()
49 cpppath=os.path.join(cwd,"COMPONENTCPP_INSTALL")
50
51     
52 # PUT HERE DEFINITIONS OF THE COMPONENTS AND THE SERVICES
53
54
55 os.environ["CALCULCPP_ROOT_DIR"]=cpppath
56 os.environ["ICOCOCPP_ROOT_DIR"]=cpppath
57 c1=HXX2SALOMEComponent("CALCUL.hxx","libCALCULCXX.so" , cpppath )
58 c4=HXX2SALOMEComponent("ICOCO.hxx","libICOCOCXX.so" , cpppath )
59
60
61 g=Generator(Module("hxxcompos",components=[c4,c1],prefix="./install"),context)
62 g.generate()
63 g.bootstrap()
64 g.configure()
65 g.make()
66 g.install()
67 g.make_appli("appli",
68              restrict=["KERNEL","GUI","YACS"],
69              altmodules={"GUI":gui_root_dir,
70                          "MED":med_root_dir,
71                          "YACS":yacs_root_dir,
72                          "GEOM":geom_root_dir})
73 cppenv=""" export CALCULCPP_ROOT_DIR=%(cpppath)s
74 export ICOCOCPP_ROOT_DIR=%(cpppath)s """  % {"cpppath" : cpppath}
75
76 cppenvfile=open("appli/env.d/cppEnv.sh","w")
77 cppenvfile.write(cppenv)
78 cppenvfile.close()
79