22 lines
358 B
Lua
22 lines
358 B
Lua
|
--
|
||
|
-- Copyright 2010-2018 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()
|