@@ -501,42 +501,26 @@ toolSharedLibrary "slang-reflection-test"
501
501
-- TODO: Fix that requirement.
502
502
--
503
503
504
- if isTargetWindows then
505
- toolSharedLibrary " render-test"
506
- uuid " 61F7EB00-7281-4BF3-9470-7C2EA92620C3"
507
-
508
- includedirs { " ." , " external" , " source" , " tools/gfx" }
509
- links { " core" , " slang" , " gfx" }
510
-
511
- systemversion " 10.0.14393.0"
512
-
513
- removefiles { " tools/render-test/cpu-render-test-main.cpp" }
514
-
515
- -- For Windows targets, we want to copy
516
- -- dxcompiler.dll, and dxil.dll from the Windows SDK redistributable
517
- -- directory into the output directory.
518
- -- d3dcompiler_47.dll is copied from the external/slang-binaries submodule.
519
- postbuildcommands { ' "$(SolutionDir)tools\\ copy-hlsl-libs.bat" "$(WindowsSdkDir)Redist/D3D/%{cfg.platform:lower()}/" "%{cfg.targetdir}/" "windows-%{cfg.platform:lower()}"' }
520
-
521
- end
522
-
523
- toolSharedLibrary " cpu-render-test"
524
- uuid " 5701695E-7324-4B4D-977A-8D56C2A041B1"
504
+ toolSharedLibrary " render-test"
505
+ uuid " 61F7EB00-7281-4BF3-9470-7C2EA92620C3"
525
506
526
507
includedirs { " ." , " external" , " source" , " tools/gfx" }
527
508
links { " core" , " slang" , " gfx" }
509
+
510
+ removefiles { " tools/render-test/cpu-render-test-main.cpp" }
528
511
529
- addSourceDir ( " tools/render-test " )
530
-
531
- removefiles { " tools/render-test/render-test-main.cpp " }
532
-
533
- if isTargetWindows then
512
+ if isTargetWindows then
513
+ addSourceDir " tools/render-test/windows "
514
+
515
+ systemversion " 10.0.14393.0 "
516
+
534
517
-- For Windows targets, we want to copy
535
518
-- dxcompiler.dll, and dxil.dll from the Windows SDK redistributable
536
519
-- directory into the output directory.
537
520
-- d3dcompiler_47.dll is copied from the external/slang-binaries submodule.
538
- postbuildcommands { ' "$(SolutionDir)tools\\ copy-hlsl-libs.bat" "$(WindowsSdkDir)Redist/D3D/%{cfg.platform:lower()}/" "%{cfg.targetdir}/"' }
539
- end
521
+ postbuildcommands { ' "$(SolutionDir)tools\\ copy-hlsl-libs.bat" "$(WindowsSdkDir)Redist/D3D/%{cfg.platform:lower()}/" "%{cfg.targetdir}/" "windows-%{cfg.platform:lower()}"' }
522
+ end
523
+
540
524
--
541
525
-- `gfx` is a utility library for doing GPU rendering
542
526
-- and compute, which is used by both our testing and exmaples.
@@ -561,15 +545,25 @@ tool "gfx"
561
545
-- directory into the output directory.
562
546
-- d3dcompiler_47.dll is copied from the external/slang-binaries submodule.
563
547
postbuildcommands { ' "$(SolutionDir)tools\\ copy-hlsl-libs.bat" "$(WindowsSdkDir)Redist/D3D/%{cfg.platform:lower()}/" "%{cfg.targetdir}/"' }
548
+
549
+ addSourceDir " tools/gfx/vulkan"
550
+ addSourceDir " tools/gfx/open-gl"
551
+ addSourceDir " tools/gfx/d3d"
552
+ addSourceDir " tools/gfx/d3d11"
553
+ addSourceDir " tools/gfx/d3d12"
554
+
555
+ addSourceDir " tools/gfx/windows"
556
+
557
+ elseif targetDetail == " mingw" or targetDetail == " cygwin" then
558
+ -- Don't support any render techs...
559
+ elseif os .target () == " macosx" then
560
+ -- addSourceDir "tools/gfx/open-gl"
564
561
else
565
- removefiles { " tools/gfx/circular-resource-heap-d3d12.cpp" , " tools/gfx/d3d-util.cpp" , " tools/gfx/descriptor-heap-d3d12.cpp" , " tools/gfx/render-d3d11.cpp" , " tools/gfx/render-d3d12.cpp" , " tools/gfx/render-gl.cpp" , " tools/gfx/resource-d3d12.cpp" , " tools/gfx/render-vk.cpp" , " tools/gfx/vk-swap-chain.cpp" , " tools/gfx/window.cpp" }
562
+ -- Linux like
563
+ -- addSourceDir "tools/gfx/vulkan"
564
+ -- addSourceDir "tools/gfx/open-gl"
566
565
end
567
-
568
- -- Remove VK from OSX gfx build
569
- if os .target () == " macosx" then
570
- removefiles { " tools/gfx/render-vk.cpp" , " tools/gfx/vk-device-queue.cpp" , " tools/gfx/vk-api.cpp" , " tools/gfx/vk-module.cpp" , " tools/gfx/vk-swap-chain.cpp" , " tools/gfx/vk-util.cpp" }
571
- end
572
-
566
+
573
567
filter { " system:linux" }
574
568
-- might be able to do pic(true)
575
569
buildoptions {" -fPIC" }
0 commit comments