mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 20:52:37 +01:00
Added Lemon Parser Generator tool.
This commit is contained in:
@@ -39,6 +39,7 @@ end
|
||||
|
||||
dofile "bx.lua"
|
||||
dofile "bin2c.lua"
|
||||
dofile "lemon.lua"
|
||||
|
||||
project "bx.test"
|
||||
kind "ConsoleApp"
|
||||
|
||||
21
scripts/lemon.lua
Normal file
21
scripts/lemon.lua
Normal file
@@ -0,0 +1,21 @@
|
||||
--
|
||||
-- Copyright 2010-2017 Branimir Karadzic. All rights reserved.
|
||||
-- License: https://github.com/bkaradzic/bx#license-bsd-2-clause
|
||||
--
|
||||
|
||||
project "lemon"
|
||||
kind "ConsoleApp"
|
||||
|
||||
files {
|
||||
path.join(BX_DIR, "tools/lemon/lemon.c")
|
||||
}
|
||||
|
||||
configuration { "not vs*" }
|
||||
buildoptions {
|
||||
"-Wno-sign-compare",
|
||||
"-Wno-unused-parameter",
|
||||
}
|
||||
|
||||
configuration {}
|
||||
|
||||
strip()
|
||||
Reference in New Issue
Block a user