mirror of https://github.com/madler/zlib.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
498 B
21 lines
498 B
project Zlib is |
|
|
|
for Languages use ("Ada"); |
|
for Source_Dirs use ("."); |
|
for Object_Dir use "."; |
|
for Main use ("test.adb", "mtest.adb", "read.adb"); |
|
|
|
package Compiler is |
|
for Default_Switches ("ada") use ("-gnatwbcfilopru", "-gnatVcdfimorst", "-gnatyabcefhiklmnoprst"); |
|
end Compiler; |
|
|
|
package Linker is |
|
for Default_Switches ("ada") use ("-lz"); |
|
end Linker; |
|
|
|
package Builder is |
|
for Default_Switches ("ada") use ("-s", "-gnatQ"); |
|
end Builder; |
|
|
|
end Zlib; |
|
|
|
|