diff options
Diffstat (limited to 'bin/chmod')
-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; |