This file is indexed.

/usr/share/gps/templates/ajis_hello/@_project_name_@.gpr is in gnat-gps-common 5.0-13.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
project @_Project_Name_@ is

   for Languages use ("Ada", "Java");
   for Source_Dirs use ("src_ada", "src_java/**");  
   for Object_Dir use "obj";

   package Compiler is
      for Default_Switches ("ada") use ("-gnat05");
   end Compiler;

   package Make is
      for Makefile use "Makefile";
   end Make;

end @_Project_Name_@;