opnsense-ports/graphics/generic_image_decoder/files/construct.gpr
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

20 lines
566 B
Text

project Construct is
for Languages use ("ada");
for Source_Dirs use ("src");
for Object_Dir use "obj_safer";
for Library_Name use "genimgdec";
for Library_Dir use "lib";
for Library_Kind use "static";
package Compiler is
for Default_Switches ("ada") use ("-O3", "-gnato", "-ffunction-sections",
"-funroll-loops", "-fpeel-loops", "-ftracer", "-funswitch-loops",
"-fweb", "-frename-registers");
end Compiler;
package Builder is
for Default_Switches ("ada") use ("-C");
end Builder;
end Construct;