raw
eucrypt_ch14_crc32      1   -- Tests project for CRC32 lib
eucrypt_ch14_crc32 2 -- S.MG, 2018
eucrypt_ch14_crc32 3
eucrypt_ch14_crc32 4 with "../crc32.gpr";
eucrypt_ch14_crc32 5
eucrypt_ch14_crc32 6 project Tests is
eucrypt_ch14_crc32 7
eucrypt_ch14_crc32 8 for Object_Dir use "obj";
eucrypt_ch14_crc32 9
eucrypt_ch14_crc32 10 for Languages use ("Ada");
eucrypt_ch14_crc32 11 for Source_Dirs use (".");
eucrypt_ch14_crc32 12 for Exec_Dir use ".";
eucrypt_ch14_crc32 13
eucrypt_ch14_crc32 14 for Main use ("test_crc32.adb");
eucrypt_ch14_crc32 15
eucrypt_ch14_crc32 16 package Compiler is
eucrypt_ch14_crc32 17 for Switches ("Ada")
eucrypt_ch14_crc32 18 use ("-O2", "-fdump-scos", "-gnata", "-fstack-check",
eucrypt_ch14_crc32 19 "-gnatyd", "-gnatym",
eucrypt_ch14_crc32 20 "-fdata-sections", "-ffunction-sections", "-gnatwr", "-gnatw.d",
eucrypt_ch14_crc32 21 "-gnatec=" & CRC32'Project_Dir & "restrict.adc");
eucrypt_ch14_crc32 22 end Compiler;
eucrypt_ch14_crc32 23
eucrypt_ch14_crc32 24 end Tests;