aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/winsock/xmake.lua
blob: 408a248b1ac2b093f1c4bdd18d533dafda5db703 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
-- Copyright Epic Games, Inc. All Rights Reserved.

target("winsock")
    set_kind("shared")
    add_headerfiles("**.h")
    add_files("**.cpp")
    add_links("Ws2_32")
    add_includedirs(".", "../../zencore/include")
    set_symbols("debug")
    add_deps("plugins")

    if is_mode("release") then
        set_optimize("fastest")
    end