summaryrefslogtreecommitdiff
path: root/userland.gpr
blob: 99ad994e2c581fab057d55a201f2b1f159d984f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
aggregate project Userland is

   for Create_Missing_Dirs use "true";
   for External ("PROJ_INCLUDE") use Userland'Project_Dir & "/include";
   for External ("BUILDROOT") use Userland'Project_Dir & "/build";
   for Project_Files use ("bin/**/*.gpr", "usr.bin/**/*.gpr");

   package Builder is
      for Switches (others) use ("-j" & External ("JOBS", "0"), "-s");
   end Builder;

end Userland;