  -- Tests project for CRC32 lib
  -- S.MG, 2018

with "../crc32.gpr";

project Tests is
  
  for Object_Dir use "obj";
  
  for Languages    use ("Ada");
  for Source_Dirs  use (".");
  for Exec_Dir     use ".";

  for Main use ("test_crc32.adb", "test_crc32_edge.adb");
  
  package Compiler is
    for Switches ("Ada")
          use ("-O2", "-fdump-scos", "-gnata", "-fstack-check",
               "-gnatyd", "-gnatym",
               "-fdata-sections", "-ffunction-sections", "-gnatwr", "-gnatw.d",
               "-gnatec=" & CRC32'Project_Dir & "restrict.adc");
  end Compiler;
      
end Tests;
