Blob Blame History Raw
--- config/templates_parser.gpr.orig	2014-04-19 00:44:08.058221684 +0200
+++ config/templates_parser.gpr	2014-04-19 00:46:58.584541637 +0200
@@ -16,18 +16,18 @@
 --  to http://www.gnu.org/licenses for a complete copy of the license.      --
 ------------------------------------------------------------------------------
 
+with "directories";
 with "templates_parser/tp_shared";
 with "templates_parser/tp_config";
 
 project Templates_Parser is
 
-   for Source_Dirs use ("../../include/templates_parser");
+   for Source_Dirs use (Directories.Includedir & "/templates_parser");
 
-   for Library_Dir use "../../lib/templates_parser/"
-       & TP_Shared.Library_Type;
+   for Library_Dir use Directories.Libdir & "/templates_parser/";
 
    for Library_Name use "templates_parser";
-   for Library_Kind use TP_Shared.Library_Type;
+   for Library_Kind use "relocatable";
    for Externally_Built use "true";
 
    package Naming renames TP_Shared.Naming;