You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
27 lines
689 B
Plaintext
27 lines
689 B
Plaintext
with "../shared";
|
|
|
|
project Docs is
|
|
|
|
for Languages use ("rest", "Python");
|
|
for Object_Dir use ".";
|
|
for Source_Dirs use ("programmers_guide",
|
|
"tutorial",
|
|
"users_guide",
|
|
"users_guide/GPS");
|
|
|
|
package Naming is
|
|
for Implementation_Suffix ("rest") use ".rst";
|
|
for Implementation_Suffix ("Python") use ".py";
|
|
end Naming;
|
|
|
|
package Compiler is
|
|
for Driver ("rest") use "";
|
|
for Driver ("python") use "";
|
|
for Object_File_Suffix ("python") use ".pyc";
|
|
for Object_File_Suffix ("rest") use "-";
|
|
end Compiler;
|
|
|
|
package Documentation renames Shared.Documentation;
|
|
|
|
end Docs;
|