blob: 689d4363e6967ed0cf11cda50663f1a53b7fb89b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
-- Default directories
-- Copyright 2012 B. Persson, Bjorn@Rombobeorn.se
-- You may do whatever you want with this file as long as you acknowledge the
-- author's copyright.
-- If your system has a global directories.gpr and you want to install to the
-- directories it specifies, then just delete this file and let the build use
-- the global one. Otherwise edit the paths below to your liking.
project Directories is
Hardware_Platform := "";
Libdir := "/usr/local/lib";
Bindir := "/usr/local/bin";
Libexecdir := "/usr/local/libexec";
Includedir := "/usr/local/include";
for Source_Files use ();
end Directories;
|