summaryrefslogtreecommitdiff
path: root/tests/console/xmake.lua
blob: 57c9f641a53607fe415e22bf1c75b27426449f29 (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
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
76
77
78
79
set_version("1.0.1")
set_config_h("$(buildir)/demo.h")

if modes("debug") then
    set_symbols("debug")
    set_warnings("all")
    set_optimize("none")
    add_cxflags("-fsanitize=address", "-ftrapv")
end

if modes("release") then
    set_strip("all")
    set_symbols("hidden")
    add_cflags("-Wno-error=deprecated-declarations")
    set_warnings("all")
    set_optimize("smallest")
    add_vectorexts("sse2", "ssse3", "mmx")
end

if modes("profile") then
    set_symbols("debug")
    set_warnings("none")
    set_optimize("fastest")
end
  
if archs("x86", "x64") then
    add_defines("ARCH=\"$(arch)\"", "PLAT=$(plat)", "MODE=$(mode)", "HOST=$(host)")
end

add_option("option1")
    set_option_enable(true)
    set_option_showmenu(true)
    add_option_defines_h_if_ok("OPTION1_ENABLE")
    set_option_description("The option for definition and need not check.")

add_option("option2")
    set_option_enable(false)
    set_option_showmenu(true)
    add_option_defines_h_if_ok("OPTION2_ENABLE")
    add_option_cincludes("stdio.h", "hello1.h")
    add_option_includedirs("src/hello1")
    set_option_description("The option for finding includes.")

add_option("option3")
    set_option_enable(false)
    set_option_showmenu(true)
    add_option_defines_h_if_ok("OPTION3_ENABLE")
    add_option_links("hello1")
    add_option_linkdirs("$(buildir)")
    set_option_description("The option for finding links.")

add_option("option4")
    set_option_enable(false)
    set_option_showmenu(true)
    add_option_defines_h_if_ok("OPTION4_ENABLE")
    set_option_description("The option for finding interfaces.")
    if not plats("windows") then
        add_option_links("z", "sqlite3")
        add_option_cfuncs("sqlite3_open")
        add_option_cincludes("stdio.h", "sqlite3.h")
    end

add_target("hello1")
    set_kind("static")
    add_files("src/hello1/*.c")

add_target("hello2")
    set_kind("shared")
    add_files("$(projectdir)/src/hello2/*.c")

add_target("hello3")
    set_kind("static")
    add_files("src/hello3/*.c") 
    add_headers("src/(hello3/*.h)")
    set_headerdir("$(buildir)/inc")
    set_targetdir("$(buildir)/lib")
    set_objectdir("$(buildir)/obj")

add_subdirs("src/demo")