comp.lang.ada
 help / color / mirror / Atom feed
From: AndreiK <andrei.krivoshei@gmail.com>
Subject: Re: Shared library project
Date: Wed, 2 Jun 2010 04:09:24 -0700 (PDT)
Date: 2010-06-02T04:09:24-07:00	[thread overview]
Message-ID: <c4de33a1-b18e-404c-8e39-e8b862c1d1d5@o4g2000vbo.googlegroups.com> (raw)
In-Reply-To: 9dcc29a0-fb04-4a2a-9f3a-1678a509358c@o4g2000vbo.googlegroups.com

The "X" project file is:

===============================
with "../AdFilters/cpp_adfilters.gpr";

project Cpp_BI_SSLL_DLL is

   for Languages use ("C++");

   for Object_Dir use project'Object_Dir & "../../obj";
   for Source_Dirs use project'Source_Dirs & "./src";

   for Library_Dir use "lib";
   for Library_Name use "BISD";
   for Library_Kind use "dynamic";

   package Naming is
      for Specification_Suffix ("C++") use ".h";
      for Implementation_Suffix ("C++") use ".cpp";
   end Naming;

end Cpp_BI_SSLL_DLL;
===================================

The "Y" project file is:
=================================
with "../SystemsCL/cpp_systemscl.gpr";

project Cpp_AdFilters is

   for Languages use ("C++");

   for Object_Dir use project'Object_Dir & "../../obj";
   for Source_Dirs use project'Source_Dirs & "./src";

   package Naming is
      for Specification_Suffix ("C") use ".h";
      for Implementation_Suffix ("C") use ".c";
      for Specification_Suffix ("C++") use ".h";
      for Implementation_Suffix ("C++") use ".cpp";
   end Naming;

end Cpp_AdFilters;
===================================

Thanks to everybody for some advise!



  reply	other threads:[~2010-06-02 11:09 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-06-02 11:05 Shared library project AndreiK
2010-06-02 11:09 ` AndreiK [this message]
2010-06-02 11:46   ` Yannick Duchêne (Hibou57)
2010-06-09 11:33     ` AndreiK
2010-06-09 14:24       ` Yannick Duchêne (Hibou57)
2010-06-10  5:10         ` AdaMagica
2010-06-10 12:50         ` Andrei Krivoshei
2010-06-10 13:04           ` Yannick Duchêne (Hibou57)
2010-06-10 19:53             ` Simon Wright
2010-06-10 13:48           ` Dmitry A. Kazakov
2010-06-02 12:02   ` sjw
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox