Files
gnatstudio/widgets/widgets.gpr
2024-07-16 06:04:02 +00:00

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;