forked from idealvin/coost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmake.lua
75 lines (61 loc) · 1.96 KB
/
xmake.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
-- plat
set_config("plat", os.host())
-- project
set_project("co")
-- set xmake minimum version
set_xmakever("2.3.1")
-- set common flags
set_languages("c++11")
set_warnings("all") -- -Wall
set_symbols("debug") -- dbg symbols
if is_plat("windows") then
set_optimize("fastest") -- faster: -O2 fastest: -Ox none: -O0
add_cxflags("/EHsc")
add_ldflags("/SAFESEH:NO")
if is_mode("debug") then
set_runtimes("MTd")
else
set_runtimes("MT")
end
elseif is_plat("mingw") then
add_ldflags("-static-libgcc -static-libstdc++ -Wl,-Bstatic -lstdc++ -lwinpthread -Wl,-Bdynamic", {force = true})
set_optimize("faster")
else
set_optimize("faster") -- faster: -O2 fastest: -O3 none: -O0
--add_cxflags("-Wno-narrowing", "-Wno-sign-compare", "-Wno-class-memaccess", "-Wno-strict-aliasing")
if is_plat("macosx", "iphoneos") then
add_cxflags("-fno-pie")
end
end
-- build with openssl 1.1.0+
option("with_openssl")
set_default(false)
set_showmenu(true)
set_description("build with openssl, 1.1.0+ required")
option_end()
-- build with libcurl (openssl, zlib also required)
option("with_libcurl")
set_default(false)
set_showmenu(true)
set_description("build with libcurl, required by http::Client")
option_end()
-- build with -fPIC
option("fpic")
set_default(false)
set_showmenu(true)
set_description("build with -fPIC")
add_cxflags("-fPIC")
option_end()
if has_config("with_libcurl") then
add_requires("openssl >=1.1.0")
add_requires("libcurl", {configs = {openssl = true, zlib = true}})
elseif has_config("with_openssl") then
add_requires("openssl >=1.1.0")
end
-- include dir
add_includedirs("include")
-- install header files
add_installfiles("(include/**)", {prefixdir = ""})
add_installfiles("*.md", {prefixdir = "include/co"})
-- include sub-projects
includes("src", "gen", "test", "unitest")