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 X-Received: by 10.182.210.233 with SMTP id mx9mr4903885obc.34.1413779762258; Sun, 19 Oct 2014 21:36:02 -0700 (PDT) X-Received: by 10.140.51.102 with SMTP id t93mr1170qga.8.1413779762143; Sun, 19 Oct 2014 21:36:02 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!news.glorb.com!h18no7785438igc.0!news-out.google.com!i10ni96qaf.0!nntp.google.com!dc16no4056677qab.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Sun, 19 Oct 2014 21:36:02 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=66.176.73.77; posting-account=yiWntAoAAAC1KqC_shmxJYv07B9l6LNU NNTP-Posting-Host: 66.176.73.77 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: New Gnoga Tool - gnoga_make From: David Botton Injection-Date: Mon, 20 Oct 2014 04:36:02 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: news.eternal-september.org comp.lang.ada:22601 Date: 2014-10-19T21:36:02-07:00 List-Id: It's now even easier to write Gnoga apps with a new tool that is part of Gnoga - gnoga_make Gnoga_Make works on Mac, Linux and Windows Gnoga_Make currently creates only one type of scaffolding for Gnoga apps a multi_connect app. There will be many more added before 1.0 in the next few weeks. (BTW, these scaffold apps also demonstrate good methods for developing Gnoga apps) Example use: Install Gnoga: git clone git://git.code.sf.net/p/gnoga/code gnoga-code cd gnoga-code make install (if on Mac / Unix and needed sudo make install) This will build and install Gnoga as a standard gnat package and install gnoga_make in gnat/bin With gnat/bin on your command line: gnoga_make new My_New_App multi_connect This will create a directory called my_new_app and create all the need files for a gnoga multi_connect application including makefiles, project files, etc. cd my_new_app make bin/my_new_app Enjoy! David Botton