diff options
| author | Yong He <yonghe@outlook.com> | 2022-01-10 13:16:30 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-10 13:16:30 -0800 |
| commit | 0ac19741937e007ebb45791f53d413d21055feda (patch) | |
| tree | e058c07fef9138941b253116c1d8a434c334ab67 /premake5.lua | |
| parent | 36e9276b1799b476f12db9b24d3073ceef3b7594 (diff) | |
Enable running tests in parallel. (#2078)
* Enable running tests in parallel.
* Fix linux build.
* Add pthread dependency for slang-test.
* Fix teamcity output.
* Fix race condition.
* Make testReporter thread safe.
* Clean up.
* Fix.
* trigger build
* Fix.
Co-authored-by: Yong He <yhe@nvidia.com>
Co-authored-by: Theresa Foley <tfoleyNV@users.noreply.github.com>
Diffstat (limited to 'premake5.lua')
| -rw-r--r-- | premake5.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/premake5.lua b/premake5.lua index a7f213b95..69f18a5b4 100644 --- a/premake5.lua +++ b/premake5.lua @@ -793,12 +793,13 @@ end uuid "0C768A18-1D25-4000-9F37-DA5FE99E3B64" includedirs { "." } links { "compiler-core", "slang", "core", "miniz", "lz4" } - -- We want to set to the root of the project, but that doesn't seem to work with '.'. -- So set a path that resolves to the same place. - debugdir("source/..") - + if not targetInfo.isWindows then + links { "pthread" } + end + -- -- The reflection test harness `slang-reflection-test` is pretty -- simple, in that it only needs to link against the slang library |
