-- File: all_examples.gpr -- Author: Ned Okie -- Date: November 25, 2012 -- Compile with: -- gnatmake -P all_examples.gpr -- If the folder containing JEWL.gpr is in the GPR_Project_Path, -- and if JEWL.gpr correctly points to the folder JEWL/source, -- then this project file and this folder, examples, can be -- located anywhere and the following with statement can be used: -- with "JEWL.gpr"; -- can be used in a project file for an application. -- If JEWL.gpr is NOT on the GPR_Project_Path the this project -- file needs to have a with statement that gives the location -- of the file JEWL.gpr. -- This with statment looks for JEWL.gpr in the grandparent folder. with "../../JEWL.gpr"; project hello is for Source_Dirs use ("."); for Object_Dir use "obj"; for Exec_Dir use "."; for Main use ( -- compile all of the examples "calculator.adb", "converter.adb", "currency_converter.adb", "font_test.adb", "guess_me.adb", "guess_me_2.adb", "minipad.adb", "multiline_test.adb", "pong.adb", "show_image.adb", "sketch.adb" ); end hello;