summaryrefslogtreecommitdiffstats
path: root/premake5.lua
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2023-03-21 15:44:21 -0700
committerGitHub <noreply@github.com>2023-03-21 15:44:21 -0700
commit96caba75e8dfbb879eff12cbe1a4c148a259f684 (patch)
tree1c7b2f25484ac22c738e006334d4df559bb733a5 /premake5.lua
parent7f11f883d0781952f002b3aa3222a3aa0040f18a (diff)
Add texture tri-linear autodiff example. (#2715)
* Add quad texture example. * delete output image * remove irrelavent files * update project files * fix * Update example. * Fix. * remove out-texture --------- Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua12
1 files changed, 2 insertions, 10 deletions
diff --git a/premake5.lua b/premake5.lua
index 486f7366d..add7544f2 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -766,6 +766,8 @@ example "triangle"
example "ray-tracing"
example "ray-tracing-pipeline"
+example "autodiff-texture"
+
example "gpu-printing"
kind "ConsoleApp"
@@ -781,17 +783,7 @@ example "cpu-com-example"
example "cpu-hello-world"
kind "ConsoleApp"
-if enableExperimental then
- project "heterogeneous-hello-world"
- kind "ConsoleApp"
- links "slangc"
- location("build/" .. slangUtil.getBuildLocationName(targetInfo) .. "/heterogeneous-hello-world")
- prebuildcommands {
- "\"%{cfg.targetdir}/slangc\" \"%{wks.location:lower()}/examples/heterogeneous-hello-world/main.slang\" -o \"%{cfg.targetdir}/heterogeneous-hello-world.exe\""
- }
- files {"examples/heterogeneous-hello-world/*.slang"}
-end
-- Most of the other projects have more interesting configuration going
-- on, so let's walk through them in order of increasing complexity.
--