Making a windows setup program for gnade
----------------------------------------

- Get Inno Setup from http://www.innosetup.com/

- Do a normal windows build of gnade

- Add pragma Linker_Options ("-ladadobc");" to gnu-db-sqlcli.adb
  in the adaodbc directory.

  Example:

  package body GNU.DB.SQLCLI is
     pragma Linker_Options ("-ladadobc");   
     pragma Linker_Options ("-lodbc32");

- Rebuild

  gnatmake -c -O2 all_modules

- Make an object library in the adaodbc library
  del all_modules.o
  del  all_modules.ali
  ar rc libadaodbc.a *.o

- Create a setup program with the install script gnade.iss


2001-05-19 Sune Falck
