X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=Examples%2Fcpp1%2Fcomponents.py;h=0507e5338e0c16973a5085e5a9972fe65d08fd70;hb=312ff7aaa4be1575585547684efef5117d266cee;hp=fa1a3bbdc23d4eb3ab43d08234e2e7002d682d2f;hpb=2c8d27b28eaf882c0a98c7604d97c6d66b048a8e;p=tools%2Fyacsgen.git diff --git a/Examples/cpp1/components.py b/Examples/cpp1/components.py index fa1a3bb..0507e53 100644 --- a/Examples/cpp1/components.py +++ b/Examples/cpp1/components.py @@ -1,10 +1,27 @@ +# Copyright (C) 2009-2015 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 +# + import os -from module_generator import Generator,Module,Service,CPPComponent -context={'update':1, - "prerequisites":"/local/cchris/.packages.d/envSalome50", - "kernel":"/local/chris/SALOME2/RELEASES/Install/KERNEL_V5", - } +#import context from .. +execfile("../context.py") +from module_generator import Generator,Module,Service,CPPComponent cwd=os.getcwd() @@ -31,15 +48,14 @@ c1=CPPComponent("compo1",services=[ defs="//def1",body=body, ), ], - includes="-I/usr/include", + calciumextendedinterface=1, ) g=Generator(Module("cppcompos",components=[c1],prefix="./install"),context) g.generate() -g.bootstrap() g.configure() g.make() g.install() -g.make_appli("appli",restrict=["KERNEL","GUI","YACS"]) +g.make_appli("appli", restrict=["KERNEL"], altmodules={"GUI":GUI_ROOT_DIR, "YACS":YACS_ROOT_DIR})