@@ -999,6 +999,12 @@ tool "slang-lookup-generator"
999
999
1000
1000
links { " compiler-core" , " core" }
1001
1001
1002
+ tool " slang-capability-generator"
1003
+ uuid " FD16CA29-C66A-430A-822C-C09655088611"
1004
+ includedirs { " ." }
1005
+
1006
+ links { " compiler-core" , " core" }
1007
+
1002
1008
tool " test-process"
1003
1009
uuid " BE412850-4BB9-429A-877C-BFBC4B34186C"
1004
1010
includedirs { " ." }
@@ -1400,6 +1406,26 @@ function preludeGenerator()
1400
1406
buildinputs { builddir .. " /slang-embed" .. getExecutableSuffix () }
1401
1407
end
1402
1408
1409
+ function capabilityGenerator ()
1410
+ filter (" files:source/slang/*.capdef" )
1411
+
1412
+ dependson { " slang-capability-generator" }
1413
+ local inputFile = " %{file.abspath}"
1414
+ local builddir = getBuildDir ()
1415
+ local outputHeaderFile = " %{wks.location}/source/slang/slang-generated-capability-defs.h"
1416
+ local outputCppFile = " %{wks.location}/source/slang/slang-generated-capability-defs-impl.h"
1417
+ local outputLookupFile = " %{wks.location}/source/slang/slang-lookup-capability-defs.cpp"
1418
+ if executeBinary then
1419
+ buildmessage (" slang-capability-generator %{file.relpath}" )
1420
+ local buildcmd = ' "' .. builddir .. ' /slang-capability-generator" "%{file.abspath}"'
1421
+ buildcommands { buildcmd }
1422
+ buildinputs { " %{file.abspath}" , builddir .. " /slang-capability-generator" .. getExecutableSuffix () }
1423
+ buildoutputs (outputHeaderFile , outputCppFile , outputLookupFile )
1424
+ end
1425
+
1426
+ filter { }
1427
+ end
1428
+
1403
1429
if not skipSourceGeneration then
1404
1430
1405
1431
generatorProject (" run-generators" , nil )
@@ -1415,6 +1441,7 @@ generatorProject("run-generators", nil)
1415
1441
" source/slang/*.meta.slang" , -- The stdlib files
1416
1442
" source/slang/slang-ast-reflect.h" , -- C++ reflection
1417
1443
" prelude/*.h" , -- The prelude files
1444
+ " source/slang/*.capdef" ,
1418
1445
1419
1446
--
1420
1447
-- To build we need to have some source! It has to be a source file that
@@ -1428,7 +1455,7 @@ generatorProject("run-generators", nil)
1428
1455
-- First, we need to ensure that various source-generation tools
1429
1456
-- get built before `slang`, so we declare a non-linking dependency between
1430
1457
-- the projects here:
1431
- dependson { " slang-cpp-extractor" , " slang-generate" , " slang-embed" }
1458
+ dependson { " slang-cpp-extractor" , " slang-generate" , " slang-embed" , " slang-capability-generator " }
1432
1459
1433
1460
local executableSuffix = getExecutableSuffix ()
1434
1461
@@ -1446,6 +1473,7 @@ generatorProject("run-generators", nil)
1446
1473
if executeBinary then
1447
1474
metaSlangGenerator ()
1448
1475
preludeGenerator ()
1476
+ capabilityGenerator ()
1449
1477
end
1450
1478
1451
1479
filter { }
@@ -1564,7 +1592,8 @@ if enableEmbedStdLib then
1564
1592
" prelude/slang-hlsl-prelude.h.cpp" ,
1565
1593
" prelude/slang-cpp-prelude.h.cpp" ,
1566
1594
" prelude/slang-cpp-host-prelude.h.cpp" ,
1567
- " prelude/slang-torch-prelude.h.cpp"
1595
+ " prelude/slang-torch-prelude.h.cpp" ,
1596
+ " source/slang/slang-lookup-capability-defs.cpp"
1568
1597
}
1569
1598
if not targetInfo .isWindows then
1570
1599
links { " pthread" }
@@ -1684,6 +1713,9 @@ standardProject("slang", "source/slang")
1684
1713
-- Similarly for any generated lookup tables
1685
1714
files {
1686
1715
" source/slang/slang-lookup-glslstd450.cpp" ,
1716
+ " source/slang/slang-lookup-capability-defs.cpp" ,
1717
+ " source/slang/slang-generated-capability-defs.h" ,
1718
+ " source/slang/slang-generated-capability-defs-impl.h" ,
1687
1719
}
1688
1720
1689
1721
--
@@ -1695,6 +1727,7 @@ standardProject("slang", "source/slang")
1695
1727
if not skipSourceGeneration then
1696
1728
dependson { " run-generators" }
1697
1729
dependson { " generate-lookup-tables" }
1730
+ dependson { " generate-capabilities" }
1698
1731
dependson { " generate-spirv-embed" }
1699
1732
end
1700
1733
0 commit comments