Skip to content
Snippets Groups Projects

locale: Check for the necessary files to generate more locales

Merged Simon McVittie requested to merge wip/smcv/locale-gen into master
7 files
+ 356
0
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 19
0
@@ -28,4 +28,23 @@ executable(
install : true,
)
if get_option('man')
custom_target(
'steam-runtime-system-info.1',
build_by_default : true,
command : [
pandoc,
'-s',
'-o', '@OUTPUT@',
'-f', pandoc_markdown_nosmart,
'-t', 'man',
'@INPUT@',
],
input : 'system-info.md',
output : 'steam-runtime-system-info.1',
install : true,
install_dir : join_paths(get_option('prefix'), get_option('mandir'), 'man1'),
)
endif
# vim:set sw=2 sts=2 et:
Loading