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.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,a0d5afcf8d13378c X-Google-Attributes: gid103376,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news.glorb.com!wn11feed!worldnet.att.net!bgtnsc05-news.ops.worldnet.att.net.POSTED!53ab2750!not-for-mail Newsgroups: comp.lang.ada From: anon@anon.org (anon) Subject: Re: How to include Win_IO for my project? Reply-To: no to spamers (No@email.given.org) References: X-Newsreader: IBM NewsReader/2 2.0 Message-ID: <%f5cl.138420$_Y1.40188@bgtnsc05-news.ops.worldnet.att.net> Date: Fri, 16 Jan 2009 19:31:07 GMT NNTP-Posting-Host: 12.64.48.254 X-Complaints-To: abuse@worldnet.att.net X-Trace: bgtnsc05-news.ops.worldnet.att.net 1232134267 12.64.48.254 (Fri, 16 Jan 2009 19:31:07 GMT) NNTP-Posting-Date: Fri, 16 Jan 2009 19:31:07 GMT Organization: AT&T Worldnet Xref: g2news1.google.com comp.lang.ada:3396 Date: 2009-01-16T19:31:07+00:00 List-Id: >From the web site: Then, you should configure the project to include the sources for Win_IO. You can do this by adding the Win_IO directory to the "Sources" part of the "Edit Project Properties" window. So: use "sources dirs" for dir of win_io sources files ( *.ads ) use "objects" for dir of win_io object files ( *.o ) use "Library" for win_io lib file, if one exist. In , tolkamp writes: >On 14 jan, 08:14, a...@anon.org (anon) wrote: >> In command-line version of GNAT: >> >> =A0gnat file<.adb> =A0 -Idir -Ldir >> >> use "-Idir" for a dir that contains the "*.ads", "*.ali" and "ali.o" >> and "-Ldir" for a dir that contains extra libraries. >> >> other options are listed by using >> >> =A0 gnat make -gnath >> >> In , t= >olkamp writes: >> >> >> >> >To make it possible to plot results of my project I have downloaded >> >GtkAda and Win_IO. >> >After this I have created a dependency between my project and GtkAda. >> >Now the project should be configured to include the sources for >> >Win_IO. >> >How can I add the Win_IO directory to my project?- Tekst uit oorspronkel= >ijk bericht niet weergeven - >> >> - Tekst uit oorspronkelijk bericht weergeven - > >I am not using the command line. >At this website http://www.ctr.unican.es/Win_IO >I found the text: > >Then, you should configure the project to include the sources for >Win_IO. >You can do this by adding the Win_IO directory to the "Sources" part >of the "Edit Project Properties" window. > >When I select "Edit Project Properties" the "Sources" part is not >available, only: >- General >- Languages >- VCS >- Source dirs >- Source files >- Objects >- Main files >- Library >- Naming >- Switches. > >Which of these selections must be used?