You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
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
27 lines
725 B
Plaintext
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;
|