-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmart_pointers.gpr
42 lines (37 loc) · 1.41 KB
/
smart_pointers.gpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
-- ---------------------------------------------------------------------
-- This software is provided as is in the hope that it might be found
-- useful.
-- You may use and modify it freely provided you keep this copyright
-- notice unchanged and mark modifications appropriately.
--
-- Bug reports and proposals for improvements are welcome. Please send
-- them to the eMail address below.
--
-- Christoph Karl Walter Grein
-- Hauptstr. 42
-- D-86926 Greifenberg
-- Germany
--
-- eMail: [email protected]
-- Internet: http://www.christ-usch-grein.homepage.t-online.de/
--
-- Copyright (c) 2011 Christoph Karl Walter Grein
-- ---------------------------------------------------------------------
project Smart_Pointers is
--====================================================================
-- Author Christoph Grein
-- Version 1.0
-- Date 17 June 2011
--====================================================================
--
--====================================================================
-- History
-- Author Version Date Reason for change
-- C.G. 1.0 17.06.2011
--====================================================================
for Source_Dirs use (".");
for Object_Dir use "GnatLib";
package Compiler is
for Default_Switches ("ada") use ("-O2", "-gnatn", "-gnat2012");
end Compiler;
end Smart_Pointers;