diff options
| author | skallweitNV <64953474+skallweitNV@users.noreply.github.com> | 2022-11-28 17:18:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-28 17:18:29 +0100 |
| commit | a54471a1ac25cd40c2eca60d784909e566aff4aa (patch) | |
| tree | 47a2a038115d3daf5ad6b4f69d1116bce37d43fa /premake5.lua | |
| parent | 1b40fe56725eeefe9c601461278376b697d4d35a (diff) | |
Add LockFile helper class (#2535)
* Add LockFile helper class
Diffstat (limited to 'premake5.lua')
| -rw-r--r-- | premake5.lua | 3 |
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" |
