You've already forked ada_libfswatch
mirror of
https://github.com/AdaCore/ada_libfswatch.git
synced 2026-02-12 13:09:18 -08:00
This is to test the functionality of interrupting and restarting the monitoring. Fix an issue found with the binding.
17 lines
370 B
Plaintext
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;
|