diff options
author | Samuel Holland <samuel@sholland.org> | 2019-07-05 21:25:26 -0500 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2019-07-05 22:23:07 -0500 |
commit | 4b05e0e49c979e4a49f37a441556ee11cd6a0c5e (patch) | |
tree | 765553e92000364cd61c8c2ff4a920b08a160975 /bin/chmod/chmod.gpr | |
parent | 91e542abd30b662683cfb93dc63d33ff36b398da (diff) | |
download | userland-4b05e0e49c979e4a49f37a441556ee11cd6a0c5e.tar.gz userland-4b05e0e49c979e4a49f37a441556ee11cd6a0c5e.tar.bz2 userland-4b05e0e49c979e4a49f37a441556ee11cd6a0c5e.tar.xz userland-4b05e0e49c979e4a49f37a441556ee11cd6a0c5e.zip |
build: add gprbuild projects
Diffstat (limited to 'bin/chmod/chmod.gpr')
-rw-r--r-- | bin/chmod/chmod.gpr | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/chmod/chmod.gpr b/bin/chmod/chmod.gpr new file mode 100644 index 0000000..d637efe --- /dev/null +++ b/bin/chmod/chmod.gpr @@ -0,0 +1,11 @@ +project chmod extends "template/bin.gpr" is + + for Main use (project'Name); + for Object_Dir use External ("BUILDROOT") & "/" & project'Name; + + package Linker is + for Trailing_Switches ("C") use + bin.Linker'Trailing_Switches("C") & ("-lfts"); + end Linker; + +end chmod; |