You've already forked libadalang
mirror of
https://github.com/AdaCore/libadalang.git
synced 2026-02-12 12:28:54 -08:00
18 lines
376 B
Plaintext
18 lines
376 B
Plaintext
with "ext";
|
|
|
|
project Lib is
|
|
for Source_Dirs use ("src-lib");
|
|
|
|
type Boolean is ("false", "true");
|
|
Alt : Boolean := external ("LIB_ALT", "false");
|
|
|
|
package Naming is
|
|
case Alt is
|
|
when "true" =>
|
|
for Spec ("lib") use "lib__alt.ads";
|
|
when "false" =>
|
|
for Spec ("lib") use "lib.ads";
|
|
end case;
|
|
end Naming;
|
|
end Lib;
|