ports/devel/asfml/files/asfml.gpr.in
Alastair Hogge 0e5cb2d39a devel/asfml: New port: Ada bindings to the Simple and Fast Multimedia Library (SFML)
ASFML is an Ada semi-thick binding to SFML. The library uses Ada types,
and portable defined types, which eliminates the inclusion of Ada
interface libraries, however most of the functions are directly
imported.

Website: https://mgrojo.github.io/ASFML/

Differential Revision:	https://reviews.freebsd.org/D42151
2023-10-21 22:35:00 +02:00

7 lines
243 B
Text

library project ASFML is
for Externally_Built use "true";
for Library_Dir use ("../../lib/asfml");
for Library_Kind use "static";
for Library_Name use "asfml";
for Source_Dirs use ("../../include/asfml");
end ASFML