You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
18 lines
355 B
Plaintext
18 lines
355 B
Plaintext
project GVD_CPP is
|
|
|
|
for Source_Dirs use (".");
|
|
for Object_Dir use "obj";
|
|
|
|
for Languages use ("C++");
|
|
for Main use ("parse_cpp.cc");
|
|
|
|
package Compiler is
|
|
for Switches ("C++") use ("-g", "-O0", "-Wno-write-strings");
|
|
end Compiler;
|
|
|
|
package Naming is
|
|
for Implementation_Suffix ("C++") use ".cc";
|
|
end Naming;
|
|
|
|
end GVD_CPP;
|