mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
Add --verbose switch to idlac_wrapper. For EC06-003. Subversion-branch: /trunk/polyorb Subversion-revision: 39578
26 lines
544 B
Plaintext
26 lines
544 B
Plaintext
with "common", "src";
|
|
with "cos_ir";
|
|
|
|
project src_corba is
|
|
|
|
Dir := "../src/corba";
|
|
for Source_Dirs use (Dir);
|
|
for Object_Dir use Dir;
|
|
|
|
for Library_Name use "polyorb-corba";
|
|
for Library_Dir use Dir & "/" & ".libs";
|
|
for Library_Kind use "static";
|
|
|
|
for Locally_Removed_Files use
|
|
("polyorb-if_descriptors-corba_ir.ads",
|
|
"polyorb-if_descriptors-corba_ir.adb");
|
|
|
|
package Compiler is
|
|
|
|
for Default_Switches ("Ada")
|
|
use Common.Compiler.Common_Ada_Compiler_Switches;
|
|
|
|
end Compiler;
|
|
|
|
end src_corba;
|