diff options
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/3rdparty.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 62262cef282..525789a92f1 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -951,6 +951,7 @@ end -- libuv library objects -------------------------------------------------- if _OPTIONS["USE_LIBUV"]=="1" then +if _OPTIONS["with-bundled-libuv"] then project "uv" uuid "cd2afe7f-139d-49c3-9000-fc9119f3cea0" kind "StaticLib" @@ -1160,6 +1161,11 @@ project "http-parser" } end +else +links { + "libuv", +} +end -------------------------------------------------- -- SDL2 library -------------------------------------------------- |