Files
gpr/examples/gprbuild/ada_cpp/except.gpr
Jerome Lambourg 76c10c296d Add the examples from the gprbuild repository
Adjust the project files to properly install them in share/doc

For eng/gpr/gpr-issues#548
2025-03-10 16:16:29 +00:00

10 lines
287 B
Plaintext

project Except is
for Languages use ("Ada", "C++");
for Source_Dirs use ("src1");
for Main use ("ada_main.adb", "cpp_main.cpp");
package Naming is
for Specification_Suffix ("C++") use ".h";
for Implementation_Suffix ("C++") use ".cpp";
end Naming;
end Except;