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

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

    add_cxxflags("/showIncludes")

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

    if is_plat("windows") then
        add_links("Ws2_32")
    end