mirror of
https://github.com/AdaCore/gprbuild.git
synced 2026-02-12 12:30:13 -08:00
git-svn-id: svn+ssh://svn.eu.adacore.com/Dev/trunk/gprmake@43597 936e1b1b-40f2-da11-902a-00137254ae57
17 lines
383 B
Plaintext
17 lines
383 B
Plaintext
project Animals is
|
|
|
|
for Source_Dirs use ("src2");
|
|
for Languages use ("Ada", "C++");
|
|
for Main use ("main.adb");
|
|
|
|
package Compiler is
|
|
for Default_Switches ("Ada") use ("-g", "-gnat05", "-gnatwA");
|
|
end Compiler;
|
|
|
|
package Naming is
|
|
for Specification_Suffix ("C++") use ".h";
|
|
for Implementation_Suffix ("C++") use ".cc";
|
|
end Naming;
|
|
|
|
end Animals;
|