You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
Also obsolete attribute was removed from IDE package Change-Id: I432e142960d5f2398db9e88e305473afebcaeea3
27 lines
735 B
Plaintext
27 lines
735 B
Plaintext
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;
|