diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-02 20:50:56 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-02 20:50:56 +0300 |
commit | 5d0821946404322152319f7f2b22b96477ac406e (patch) | |
tree | f238fa0696173e838585a17cf490e208cd14b825 /docs/markdown/snippets/configure_file_output_format.md | |
parent | 1c44afdeed636f90a1e2685cba4143eacde21887 (diff) | |
download | meson-0.47.0.tar.gz |
Update everything for new release.0.47.0
Diffstat (limited to 'docs/markdown/snippets/configure_file_output_format.md')
-rw-r--r-- | docs/markdown/snippets/configure_file_output_format.md | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/docs/markdown/snippets/configure_file_output_format.md b/docs/markdown/snippets/configure_file_output_format.md deleted file mode 100644 index e52288584..000000000 --- a/docs/markdown/snippets/configure_file_output_format.md +++ /dev/null @@ -1,14 +0,0 @@ -## New keyword argument `output_format` for configure_file() - -When called without an input file, `configure_file` generates a -C header file by default. A keyword argument was added to allow -specifying the output format, for example for use with nasm or yasm: - -``` -conf = configuration_data() -conf.set('FOO', 1) - -configure_file('config.asm', - configuration: conf, - output_format: 'nasm') -``` |