You've already forked prettier-ada
mirror of
https://github.com/AdaCore/prettier-ada.git
synced 2026-02-12 13:12:50 -08:00
25 lines
608 B
Plaintext
25 lines
608 B
Plaintext
--
|
|
-- Copyright (C) 2023, AdaCore
|
|
-- SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
--
|
|
|
|
with "prettier_ada.gpr";
|
|
|
|
project Test_Programs is
|
|
for Source_Dirs use ("src");
|
|
for Object_Dir use "obj";
|
|
for Exec_dir use "bin";
|
|
for Main use
|
|
("document_formatter-main.adb", "json_tester.adb", "builders_tester.adb");
|
|
|
|
package Compiler renames Prettier_Ada.Compiler;
|
|
|
|
package Builder is
|
|
for Executable ("document_formatter-main.adb") use "document_formatter";
|
|
end Builder;
|
|
|
|
package Binder is
|
|
for Default_Switches ("Ada") use ("-Es");
|
|
end Binder;
|
|
end Test_Programs;
|