From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,eed2d3a237734411 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!o4g2000vbo.googlegroups.com!not-for-mail From: AndreiK Newsgroups: comp.lang.ada Subject: Re: Shared library project Date: Wed, 2 Jun 2010 04:09:24 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: <9dcc29a0-fb04-4a2a-9f3a-1678a509358c@o4g2000vbo.googlegroups.com> NNTP-Posting-Host: 193.40.240.135 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1275476964 21656 127.0.0.1 (2 Jun 2010 11:09:24 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Wed, 2 Jun 2010 11:09:24 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: o4g2000vbo.googlegroups.com; posting-host=193.40.240.135; posting-account=kfQcmwoAAAAImQIpF8z0neulU3uSEwPV User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:12196 Date: 2010-06-02T04:09:24-07:00 List-Id: 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!