Files
gnatstudio/plugins.gpr
Anthony Leonardo Gracio 84edfbb666 Remove Python from plugins.gpr language
Due to errors reported by GPR2 that leads the stable-als
to abort project loading.

This is fixed in als-edge though, so we will be able
to remove this workaround in the next bump.

For eng/ide/ada_language_server#1454
2024-10-07 10:20:25 +00:00

27 lines
725 B
Plaintext

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;