summaryrefslogtreecommitdiff
path: root/core/pkg/base.pkg/xmake.lua
blob: db521e6770d1e9409494d14f61427fc7b1f8c193 (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") 
    elseif is_os("android") then add_links("m", "c") 
    else add_links("pthread", "dl", "m", "c") end