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=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 Path: border1.nntp.dca3.giganews.com!backlog3.nntp.dca3.giganews.com!border3.nntp.dca.giganews.com!border1.nntp.dca.giganews.com!nntp.giganews.com!goblin2!goblin.stu.neva.ru!feeder.erje.net!eu.feeder.erje.net!eternal-september.org!feeder.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: texttools and standard library packages Date: Mon, 16 Dec 2013 09:23:26 +0000 Organization: A noiseless patient Spider Message-ID: References: <83jfa95ibgj73rsr9r8d038plvrm6m4d8d@4ax.com> <1dld0z8pf8o8b.n59l143irgob.dlg@40tude.net> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: mx05.eternal-september.org; posting-host="aa5206ded37b2ca7f9833bd0a598d69e"; logging-data="20655"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18MgAuwWtCvykzCbalCBnEnstn3J3o9r9s=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (darwin) Cancel-Lock: sha1:ZLrL+VyntybH8Ye5CHdlwvEBsns= sha1:3GNnD5vuHB+PY3vXyXIhrYRpLVI= X-Original-Bytes: 1752 Xref: number.nntp.dca.giganews.com comp.lang.ada:184277 Date: 2013-12-16T09:23:26+00:00 List-Id: "Dmitry A. Kazakov" writes: > If the library you need is already packaged as Ludovic suggested, then > all you need is to use its project file in your project: > > with "the_library_i_need.gpr"; > project Basic is > for Main use "basic.adb"; > end Basic; > > $ gnatmake -Pmy_project.gpr That would give you a warning; the project file name should be the same as the name of the project, so here it should be basic.gpr. This is, I believe, case-insensitive.