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