| Revision: | 1096 | 
| Committed: | Sat Dec 30 14:40:33 2017 UTC (7 years, 10 months ago) by s10k | 
| File size: | 511 byte(s) | 
| Log Message: | Added zlib, quazip, basicxmlsyntaxhighlighter, conditionalsemaphore and linenumberdisplay libraries. zlib and quazip are pre-compiled, but you can compile them yourself, just delete the dll files (or equivalent binary files to your OS) | 
| # | Content | 
|---|---|
| 1 | project Zlib is | 
| 2 | |
| 3 | for Languages use ("Ada"); | 
| 4 | for Source_Dirs use ("."); | 
| 5 | for Object_Dir use "."; | 
| 6 | for Main use ("test.adb", "mtest.adb", "read.adb", "buffer_demo"); | 
| 7 | |
| 8 | package Compiler is | 
| 9 | for Default_Switches ("ada") use ("-gnatwcfilopru", "-gnatVcdfimorst", "-gnatyabcefhiklmnoprst"); | 
| 10 | end Compiler; | 
| 11 | |
| 12 | package Linker is | 
| 13 | for Default_Switches ("ada") use ("-lz"); | 
| 14 | end Linker; | 
| 15 | |
| 16 | package Builder is | 
| 17 | for Default_Switches ("ada") use ("-s", "-gnatQ"); | 
| 18 | end Builder; | 
| 19 | |
| 20 | end Zlib; |