mirror of
https://github.com/AdaCore/VSS.git
synced 2026-02-12 13:06:25 -08:00
30 lines
766 B
Plaintext
30 lines
766 B
Plaintext
--
|
|
-- Copyright (C) 2020-2024, AdaCore
|
|
--
|
|
-- SPDX-License-Identifier: Apache-2.0
|
|
--
|
|
|
|
-- Aggregate project mostly for documentation generation
|
|
|
|
aggregate project VSS_Documentation is
|
|
|
|
for Project_Files use
|
|
("gnat/vss_text.gpr",
|
|
"gnat/vss_json.gpr",
|
|
"gnat/vss_regexp.gpr",
|
|
"gnat/vss_xml.gpr",
|
|
-- "gnat/vss_xml_xmlada.gpr",
|
|
-- XmlAda integration is excluded due to dependency from the XmlAda, which is
|
|
-- hard to handle at GHA.
|
|
"gnat/vss_xml_templates.gpr");
|
|
|
|
package Documentation is
|
|
for Output_Dir (others) use ".docs";
|
|
for Resources_Dir (others) use "gnatdoc";
|
|
for Excluded_Project_Files use
|
|
("config/vss_config.gpr",
|
|
"gnat/vss_gnat.gpr");
|
|
end Documentation;
|
|
|
|
end VSS_Documentation;
|