aboutsummaryrefslogtreecommitdiff
path: root/src/transports/winsock
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2023-12-05 15:13:40 +0100
committerGitHub <[email protected]>2023-12-05 15:13:40 +0100
commit311326f0eff2a77892ca533bd46a4bb53444699c (patch)
tree036e560fe9fbb1800f21a035c7925f4c8a7e9f0e /src/transports/winsock
parentHTTP plugin request debug logging (#587) (diff)
downloadzen-311326f0eff2a77892ca533bd46a4bb53444699c.tar.xz
zen-311326f0eff2a77892ca533bd46a4bb53444699c.zip
http plugin dependency fixes (#590)
these changes clean up module dependencies and allow the transports subtree to be built standalone (in the UE tree for instance)
Diffstat (limited to 'src/transports/winsock')
-rw-r--r--src/transports/winsock/xmake.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transports/winsock/xmake.lua b/src/transports/winsock/xmake.lua
index 552a62702..c14283546 100644
--- a/src/transports/winsock/xmake.lua
+++ b/src/transports/winsock/xmake.lua
@@ -6,9 +6,9 @@ target("winsock")
add_headerfiles("**.h")
add_files("**.cpp")
add_links("Ws2_32")
- add_includedirs(".", "../../zenbase/include")
+ add_includedirs(".")
set_symbols("debug")
- add_deps("transport-sdk")
+ add_deps("zenbase", "transport-sdk")
if is_mode("release") then
set_optimize("fastest")