Files
ada_libfswatch/examples/examples.gpr
Nicolas Setton d2aff18b1d Add an example of a monitor which can reload itself
This is to test the functionality of interrupting and
restarting the monitoring.

Fix an issue found with the binding.
2020-10-22 17:42:13 +01:00

17 lines
370 B
Plaintext

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