Home | History | Annotate | Line # | Download | only in ada
      1  1.1  christos project Zlib is
      2  1.1  christos 
      3  1.1  christos    for Languages use ("Ada");
      4  1.1  christos    for Source_Dirs use (".");
      5  1.1  christos    for Object_Dir use ".";
      6  1.1  christos    for Main use ("test.adb", "mtest.adb", "read.adb", "buffer_demo");
      7  1.1  christos 
      8  1.1  christos    package Compiler is
      9  1.1  christos       for Default_Switches ("ada") use ("-gnatwcfilopru", "-gnatVcdfimorst", "-gnatyabcefhiklmnoprst");
     10  1.1  christos    end Compiler;
     11  1.1  christos 
     12  1.1  christos    package Linker is
     13  1.1  christos       for Default_Switches ("ada") use ("-lz");
     14  1.1  christos    end Linker;
     15  1.1  christos 
     16  1.1  christos    package Builder is
     17  1.1  christos       for Default_Switches ("ada") use ("-s", "-gnatQ");
     18  1.1  christos    end Builder;
     19  1.1  christos 
     20  1.1  christos end Zlib;
     21