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 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!feeder.eternal-september.org!aioe.org!.POSTED!not-for-mail From: "Nasser M. Abbasi" Newsgroups: comp.lang.ada Subject: basic questions on using GPS Date: Sat, 18 Jul 2015 15:20:39 -0500 Organization: Aioe.org NNTP Server Message-ID: Reply-To: nma@12000.org NNTP-Posting-Host: 8NUpq80EOZpQMEPcD5V8pw.user.speranza.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 X-Notice: Filtered by postfilter v. 0.8.2 X-Mozilla-News-Host: news://nntp.aioe.org:119 Xref: news.eternal-september.org comp.lang.ada:26882 Date: 2015-07-18T15:20:39-05:00 List-Id: I never used GPS (much) before. I do not like project based IDE's actually, as they make me feel trapped, but have no choice here. I am little confused about something. normally when not using an IDE, and want to test something, by making small program, I have a one folder where I keep my Ada test files, and then use the editor and make a new foo_nnn.adb and then compile it using gnatmake from command line. Now with GPS, each time I want to try something, I open GPS, then have to decide between these choices: 1. create new project from template 2. start with default project in directory ... 3. create new project with wizard 4. open existing project. I select 1, then select basic project->simple project, now I have to give a name to the project. name? ok, I have to come up with yet another name, say default_nnn, and hopefully this was not used before as I can't remember, now I have to select folder to where to create the project in, navigate to the folder, make new folder below it so that this project do not see the other source files, just for this one project, make yet another new folder name, may be same as project name? and click apply. This is all so much work for making one simple foo.adb each time I want to try something. using command line, I simply do cd my_stuff vi foo1.adb gnatmake foo1.adb and be done with it. I must be missing some simpler way to deal with GPS. All what I want is to be able to make a new main program and compile it and run it, without having to go through this process each time and having to make new project and new folders for each small item. Is there a way to avoid having to go through this process each time? I could use the last project, but I want to keep the earlier files and not modify them. thanks --Nasser