You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
git-svn-id: svn+ssh://svn.eu/Dev/importfromcvs/trunk@84362 936e1b1b-40f2-da11-902a-00137254ae57
17 lines
414 B
Plaintext
Executable File
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;
|