------------------------------------------------------------------------------ -- -- -- OCARINA COMPONENTS -- -- -- -- O C A R I N A . F R O N T E N D S -- -- -- -- P r o j e c t -- -- -- -- Copyright (C) 2008-2009 Telecom ParisTech, 2010-2016 ESA & ISAE. -- -- -- -- Ocarina is free software; you can redistribute it and/or modify under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. Ocarina 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. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- . -- -- -- -- Ocarina is maintained by the TASTE project -- -- (taste-users@lists.tuxfamily.org) -- -- -- ------------------------------------------------------------------------------ with "ocarina"; with "ocarina-core"; project Ocarina.Frontends is Src_Dir := Ocarina.Top_Src_Dir & "/frontends"; Build_Dir := Ocarina.Top_Build_Dir & "/frontends"; for Source_Dirs use (Src_Dir & "/aadl", Src_Dir & "/aadl_ba", Src_Dir & "/aadl_ema", Src_Dir & "/real"); for Object_Dir use Build_Dir & "/objects"; for Library_Dir use Build_Dir & "/libs"; for Library_Name use "ocarina-frontends"; for Library_Kind use Ocarina.Lib_Type; package Compiler renames Ocarina.Compiler; package Binder renames Ocarina.Binder; package Builder renames Ocarina.Builder; end Ocarina.Frontends;