blob: dcbb560ed95aefc902f501b2514f6ee34530efe6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--
-- Copyright 2010-2023 Branimir Karadzic. All rights reserved.
-- License: https://github.com/bkaradzic/bx/blob/master/LICENSE
--
project "lemon"
kind "ConsoleApp"
files {
path.join(BX_DIR, "tools/lemon/lemon.c")
}
configuration { "not vs*" }
buildoptions {
"-Wno-implicit-fallthrough",
"-Wno-sign-compare",
"-Wno-unused-parameter",
}
configuration {}
strip()
|