You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
20 lines
419 B
Plaintext
20 lines
419 B
Plaintext
|
|
with "../common/common_ui";
|
|
with "../shared";
|
|
with "../gnatcoll_extras/gnatcoll_extras";
|
|
|
|
project Widgets is
|
|
|
|
for Languages use ("C", "Ada");
|
|
for Source_Dirs use ("src");
|
|
for Object_Dir use Shared'Object_Dir;
|
|
|
|
package Compiler is
|
|
for Switches ("Ada") use Shared.Compiler'Switches ("Ada");
|
|
for Switches ("C") use
|
|
("-g", "-O2")
|
|
& Shared.Gtk_Cflags;
|
|
end Compiler;
|
|
|
|
end Widgets;
|