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=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6299393aa51fdbf3 X-Google-Attributes: gid103376,public Path: g2news1.google.com!news1.google.com!news.glorb.com!wn14feed!worldnet.att.net!attbi_s03.POSTED!53ab2750!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: set programm icon References: X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 24.6.132.82 X-Complaints-To: abuse@comcast.net X-Trace: attbi_s03 1087241672 24.6.132.82 (Mon, 14 Jun 2004 19:34:32 GMT) NNTP-Posting-Date: Mon, 14 Jun 2004 19:34:32 GMT Organization: Comcast Online Date: Mon, 14 Jun 2004 19:34:32 GMT Xref: g2news1.google.com comp.lang.ada:1487 Date: 2004-06-14T19:34:32+00:00 List-Id: >but the gnat compiler tells me, that he cant find the wglink.exe! (gnatmake >xfile.adb --GNATLINK=wglink.exe --- in the directory where the file >to bind is) Try "--GNATLINK=thefullpath\wglink" or put the wglink.exe in the working directory from which you are running gnatmake. >how can I only include the *.o file in my source code? Do I have to use the >command: >pragma linker_options("icon.o"); The readme.txt that came with wglink says: >To use wglink, add appropriate 'pragma linker_options("abc.rc")' >to the Ada source code, ...