diff options
Diffstat (limited to 'docs/yaml/functions/custom_target.yaml')
-rw-r--r-- | docs/yaml/functions/custom_target.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/yaml/functions/custom_target.yaml b/docs/yaml/functions/custom_target.yaml index bfc7da9..40f16b0 100644 --- a/docs/yaml/functions/custom_target.yaml +++ b/docs/yaml/functions/custom_target.yaml @@ -173,7 +173,7 @@ kwargs: custom_target('different-install-dirs', output : ['first.file', 'second.file'], install : true, - install_dir : ['somedir', 'otherdir]) + install_dir : ['somedir', 'otherdir']) ``` This would install `first.file` to `somedir` and `second.file` to `otherdir`. @@ -183,7 +183,7 @@ kwargs: custom_target('only-install-second', output : ['first.file', 'second.file'], install : true, - install_dir : [false, 'otherdir]) + install_dir : [false, 'otherdir']) ``` This would install `second.file` to `otherdir` and not install `first.file`. |