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

   for Create_Missing_Dirs use "true";
   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;