blob: 00884ee704bfd209d4ab2892919ee99de6ae0d53 (
plain)
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
|
-- the debug mode
if is_mode("debug") then
-- enable the debug symbols
set_symbols("debug")
-- disable optimization
set_optimize("none")
end
-- the release mode
if is_mode("release") then
-- set the symbols visibility: hidden
set_symbols("hidden")
-- enable fastest optimization
set_optimize("fastest")
-- strip all symbols
set_strip("all")
end
-- for macosx or ios
if is_os("macosx", "ios") then
-- add framework
add_mxflags("-framework Foundation", "-framework CoreFoundation")
add_ldflags("-framework Foundation", "-framework CoreFoundation")
-- enable arc?
add_mxflags("-fobjc-arc")
end
-- add target
target("console_objc++")
-- set kind
set_kind("binary")
-- add files
add_files("src/*.mm")
|