Ensure stroke_params_lexer.h is created on all platforms (linux or msys2)
Probably due to an order of build commands this file was not created before use on msys2.
This commit is contained in:
parent
49cb9586bd
commit
b0bf780b80
|
@ -614,6 +614,9 @@ generate_lemon_grammar(
|
||||||
)
|
)
|
||||||
|
|
||||||
# auto-generate stroke_params_lexer.h and stroke_params_keywords.cpp
|
# auto-generate stroke_params_lexer.h and stroke_params_keywords.cpp
|
||||||
|
# Called twice one for common and one for gal, to ensure the files are created
|
||||||
|
# on all devel tools ( Linux and msys2 )
|
||||||
|
# works on Linux:
|
||||||
make_lexer(
|
make_lexer(
|
||||||
common
|
common
|
||||||
stroke_params.keywords
|
stroke_params.keywords
|
||||||
|
@ -621,6 +624,14 @@ make_lexer(
|
||||||
stroke_params_keywords.cpp
|
stroke_params_keywords.cpp
|
||||||
STROKEPARAMS_T
|
STROKEPARAMS_T
|
||||||
)
|
)
|
||||||
|
# works on msys2:
|
||||||
|
make_lexer(
|
||||||
|
gal
|
||||||
|
stroke_params.keywords
|
||||||
|
stroke_params_lexer.h
|
||||||
|
stroke_params_keywords.cpp
|
||||||
|
STROKEPARAMS_T
|
||||||
|
)
|
||||||
|
|
||||||
# auto-generate netlist_lexer.h and netlist_keywords.cpp
|
# auto-generate netlist_lexer.h and netlist_keywords.cpp
|
||||||
make_lexer(
|
make_lexer(
|
||||||
|
|
Loading…
Reference in New Issue