lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> My strategy would be to write a CMake script --> Lua translator.

I have the same impression. If the syntax just
	NAME(WORD WORD ... WORD)
you could write an LPeg parser in no time.

You could also write lua_Readers that would translate that syntax into
	NAME("WORD", "WORD", ..., "WORD")
taking care of interpolation etc.