Files
gnatstudio/cpp_module/cpp_module.gpr
Emmanuel Briot 4e9b71fd4f Remove dependency on vsearch module, no longer needed
git-svn-id: svn+ssh://svn.eu/Dev/importfromcvs/trunk@84362 936e1b1b-40f2-da11-902a-00137254ae57
2003-08-05 15:00:07 +00:00

17 lines
414 B
Plaintext
Executable File

with "../kernel/kernel";
with "../shared";
with "../prj_editor/prj_editor";
project Cpp_Module is
for Source_Dirs use ("src");
for Object_Dir use "obj";
package Compiler is
for Default_Switches ("Ada") use Shared.Compiler'Default_Switches ("Ada");
for Switches ("foreign_naming_scheme_editor_pkg.adb") use ("-g", "-O2");
end Compiler;
package IDE renames Shared.IDE;
end Cpp_Module;