diff options
| author | skallweitNV <64953474+skallweitNV@users.noreply.github.com> | 2022-12-07 17:21:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-07 08:21:22 -0800 |
| commit | f116f43bd12358e87f351f0d3615628ac4e00921 (patch) | |
| tree | 26e486960d2ab29b2d1cab2d50288f6a2ee4c441 | |
| parent | 989ea017ea01eaa8ada66c7d20972be87486ef03 (diff) | |
Make slang-test depend on test tool libraries (#2554)
| -rw-r--r-- | premake5.lua | 1 | ||||
| -rw-r--r-- | slang.sln | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua index f8c768ebb..8e1a97b7c 100644 --- a/premake5.lua +++ b/premake5.lua @@ -880,6 +880,7 @@ tool "slangd" uuid "0C768A18-1D25-4000-9F37-DA5FE99E3B64" includedirs { "." } links { "compiler-core", "slang", "core", "miniz", "lz4" } + dependson { "slang-reflection-test-tool", "render-test-tool", "slang-unit-test-tool", "gfx-unit-test-tool" } -- 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/..") @@ -4,6 +4,12 @@ Microsoft Visual Studio Solution File, Format Version 12.00 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{FD47AE19-69FD-260F-F2F1-20E65EA61D13}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "slang-test", "build\visual-studio\slang-test\slang-test.vcxproj", "{0C768A18-1D25-4000-9F37-DA5FE99E3B64}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C5ACCA6E-C04D-4B36-8516-3752B3C13C2F} = {C5ACCA6E-C04D-4B36-8516-3752B3C13C2F}
+ {61F7EB00-7281-4BF3-9470-7C2EA92620C3} = {61F7EB00-7281-4BF3-9470-7C2EA92620C3}
+ {0162864E-7651-4B5E-9105-C571105276EA} = {0162864E-7651-4B5E-9105-C571105276EA}
+ {092DAB9F-1DA5-4538-ADD7-1A8D1DBFD519} = {092DAB9F-1DA5-4538-ADD7-1A8D1DBFD519}
+ EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gfx", "build\visual-studio\gfx\gfx.vcxproj", "{222F7498-B40C-4F3F-A704-DDEB91A4484A}"
EndProject
|
