diff options
| author | Yong He <yonghe@outlook.com> | 2022-06-01 17:36:44 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-01 17:36:44 -0700 |
| commit | fa10f7dc23f8b93c0f9ef3fb5477871a20aaa974 (patch) | |
| tree | ebe579aed10d8cca9b6846fd18804361e8657221 /premake5.lua | |
| parent | fc84455d0d1cb6b9396ba869a17d6f8d4b65ecc6 (diff) | |
Add language server daemon. (#2251)
* Add language server daemon.
* Fix.
Co-authored-by: Yong He <yhe@nvidia.com>
Co-authored-by: jsmall-nvidia <jsmall@nvidia.com>
Co-authored-by: Theresa Foley <10618364+tangent-vector@users.noreply.github.com>
Diffstat (limited to 'premake5.lua')
| -rw-r--r-- | premake5.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua index 9b985e29d..a1661e611 100644 --- a/premake5.lua +++ b/premake5.lua @@ -784,6 +784,11 @@ standardProject("slang-rt", "source/slang-rt") includedirs { "." } links { "compiler-core", "core", "slang" } + +tool "slangd" + uuid "B2D63B45-92B0-40F7-B242-CCA4DFD64341" + includedirs { "." } + links { "compiler-core", "core", "slang" } -- -- `slang-generate` is a tool we use for source code generation on |
