Hi David,

The make_on_windows.bat and clean_on_windows.bat did not work correctly on
Windows with GNAT-GPL-2014 installed only. In other word, neither MinGW nor
Cygwin is available. I would suggest to create additional bat files for
this purpose. Below are the contents have been tested. You can choose the
appropriate file names if you like.

-- file: build.dat
if not exist bin mkdir bin
if not exist obj mkdir obj
if not exist lib mkdir lib
cd src
copy gnoga-application.windows gnoga-application.adb
gnatmake -P gnoga.gpr
cd ..
cd demo
cd snake
gnatmake -P snake.gpr
cd ..\..\


-- file: clean.bat
cd obj
del /Q *.*
cd ..
cd lib
del /Q *.*
cd ..
cd bin
del /Q *.*
cd ..
------------------------------------------------------------------------------
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list

Reply via email to