From cd63ea1509bc349ce3b0042da134da7c193213d5 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 14 Feb 2019 20:05:55 +0100 Subject: Fussiness --- meson.build | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 2dc827d..c99fb01 100644 --- a/meson.build +++ b/meson.build @@ -42,13 +42,13 @@ flex_gen = generator(flex, bison_gen = generator(bison, output : ['@BASENAME@_parse.c', '@BASENAME@_parse.h'], - arguments : ['--defines=@OUTPUT1@', + arguments : ['--output=@OUTPUT0@', + '--defines=@OUTPUT1@', '--report=all', - '--output=@OUTPUT0@', '@INPUT@']) -storycode_lex_c = flex_gen.process('libstorycode/storycode.l') storycode_parse_ch = bison_gen.process('libstorycode/storycode.y') +storycode_lex_ch = flex_gen.process('libstorycode/storycode.l') libstorycode = library('storycode', ['libstorycode/narrative.c', @@ -56,7 +56,7 @@ libstorycode = library('storycode', 'libstorycode/presentation.c', 'libstorycode/stylesheet.c', 'libstorycode/storycode.c', - storycode_lex_c, + storycode_lex_ch, storycode_parse_ch, ], include_directories : libstorycode_includes, -- cgit v1.2.3