X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=Ada95%2Fsrc%2Flibrary.gpr;h=8a1c55b416533cfd76b5dcdf5ea96cde9943dcbf;hp=e7380f09f7fc6e95864867d31592d1fa03af1983;hb=4bbfbf869d8c913cb0f5f30708b0bcb5d1724b96;hpb=bd0d93918c967f71d8e287fd6714f0b88da820da diff --git a/Ada95/src/library.gpr b/Ada95/src/library.gpr index e7380f09..8a1c55b4 100644 --- a/Ada95/src/library.gpr +++ b/Ada95/src/library.gpr @@ -1,5 +1,5 @@ ------------------------------------------------------------------------------ --- Copyright (c) 2010-2011,2014 Free Software Foundation, Inc. -- +-- Copyright (c) 2010-2016,2018 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- @@ -25,10 +25,10 @@ -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ --- $Id: library.gpr,v 1.9 2014/06/01 01:13:09 tom Exp $ +-- $Id: library.gpr,v 1.12 2018/01/14 22:21:37 tom Exp $ -- http://gcc.gnu.org/onlinedocs/gnat_ugn_unw/Library-Projects.html -- http://www.adaworld.com/debian/debian-ada-policy.html -project Library is +project AdaCurses is Build_Dir := External ("BUILD_DIR"); Source_Dir := External ("SOURCE_DIR"); Source_Dir2 := External ("SOURCE_DIR2"); @@ -43,7 +43,7 @@ project Library is for Source_Dirs use (Source_Dir & "/src", Source_Dir2, Build_Dir & "/src"); - for Library_Options use ("-lncurses", "-lpanel", "-lmenu", "-lform"); + -- for Library_Options use ("-lncurses", "-lpanel", "-lmenu", "-lform"); package Compiler is for Default_Switches ("Ada") use ("-g", @@ -51,6 +51,7 @@ project Library is "-gnatafno", "-gnatVa", -- All validity checks "-gnatwa"); -- Activate all optional errors + -- for Default_Switches ("C") use end Compiler; for Languages use ("C", "Ada"); -end Library; +end AdaCurses;