summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authorskallweitNV <64953474+skallweitNV@users.noreply.github.com>2022-11-28 17:18:29 +0100
committerGitHub <noreply@github.com>2022-11-28 17:18:29 +0100
commita54471a1ac25cd40c2eca60d784909e566aff4aa (patch)
tree47a2a038115d3daf5ad6b4f69d1116bce37d43fa /premake5.lua
parent1b40fe56725eeefe9c601461278376b697d4d35a (diff)
Add LockFile helper class (#2535)
* Add LockFile helper class
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua
index 92243263a..85532a07f 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -1441,6 +1441,9 @@ tool "slangd"
includedirs { "." }
addSourceDir "tools/unit-test"
links { "lz4", "miniz", "core", "compiler-core", "slang" }
+ if not targetInfo.isWindows then
+ links { "pthread" }
+ end
if enableProfile then
tool "slang-profile"