Files
ada_libfswatch/examples/examples.gpr
Nicolas Setton 6ab6448692 Fixes for Windows
Workaround issue when binding time.h under Windows.
Add basic as a main for the examples project.

Add an example of how to stop a monitoring session.
2020-10-16 14:50:00 +01:00

14 lines
270 B
Plaintext

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