File: plugins.gpr

package info (click to toggle)
gnat-gps 19.2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 45,236 kB
  • sloc: ada: 366,795; python: 32,902; xml: 9,699; makefile: 1,025; ansic: 917; sh: 320; java: 17
file content (26 lines) | stat: -rw-r--r-- 735 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
with "shared";

project Plugins is

   for Languages use ("XML", "Python", "CSS");
   for Source_Dirs use
     ("share", "share/plug-ins/**", "share/support/**", "share/library/**");

   package Naming is
      for Implementation_Suffix ("Python") use ".py";
      for Implementation_Suffix ("XML") use ".xml";
      for Implementation_Suffix ("CSS") use ".css";
   end Naming;

   package Compiler is
      for Driver ("Python") use "";
      for Driver ("XML") use "";
      for Driver ("CSS") use "";
      for Object_File_Suffix ("python") use ".pyc";
      for Object_File_Suffix ("xml") use "-";
      for Object_File_Suffix ("css") use "-";
   end Compiler;

   package Documentation renames Shared.Documentation;

end Plugins;