This file is indexed.

/usr/share/gps/templates/aws_web_server/@_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
16
17
18
19
with "aws";

project @_Project_Name_@ is

   for Source_Dirs use ("src");
   for Object_Dir use "obj";
   for Exec_Dir use ".";

   for Main use ("@_project_name_@-main.adb");

   package Builder is
      for Executable ("@_project_name_@-main.adb") use "@_project_name_@";
   end Builder;

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

end @_Project_Name_@;