You've already forked ada_libfswatch
mirror of
https://github.com/AdaCore/ada_libfswatch.git
synced 2026-02-12 13:09:18 -08:00
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.
14 lines
270 B
Plaintext
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;
|