forked from AdaCore/gnatstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.gpr
More file actions
26 lines (20 loc) · 725 Bytes
/
plugins.gpr
File metadata and controls
26 lines (20 loc) · 725 Bytes
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", "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;