summaryrefslogtreecommitdiff
path: root/core/pkg/base.pkg/xmake.lua
blob: 92d1ced6d22eed4a7d06cfc2184a18c50e2ccffd (plain)
1
2
3
4
5
6
7
8
9
10
11
-- the base package
option("base")
    
    -- set category
    set_category("package")
   
    -- add links
    if is_os("windows") then add_links("ws2_32", "Advapi32") 
    elseif is_os("android") then add_links("m", "c") 
    else add_links("pthread", "dl", "m", "c") end