Files
ada_libfswatch/examples/examples.gpr
Nicolas Setton 9cfdce93a8 Add a high-level API for monitoring the filesystem
And add an example to illustrate its use.
2020-10-21 17:25:21 +01:00

14 lines
302 B
Plaintext

with "../ada_libfswatch";
project Examples is
for Source_Dirs use (".");
for Object_Dir use "obj";
for Main use ("blocking_monitor_example.adb", "basic.adb");
package Compiler is
for Default_Switches ("Ada") use ("-g", "-O0", "-gnatwae", "-gnaty");
end Compiler;
end Examples;