behaviour-tree-test/engine/editor/shader/shader_baker/SCsub
Sara c3f9669b10 Add 'engine/' from commit 'a8e37fc010'
git-subtree-dir: engine
git-subtree-mainline: b74841629e
git-subtree-split: a8e37fc010
2026-03-13 11:22:19 +01:00

13 lines
414 B
Python

#!/usr/bin/env python
from misc.utility.scons_hints import *
Import("env")
if env["vulkan"]:
env.add_source_files(env.editor_sources, "shader_baker_export_plugin_platform_vulkan.cpp")
if env["d3d12"]:
env.add_source_files(env.editor_sources, "shader_baker_export_plugin_platform_d3d12.cpp")
if env["metal"]:
env.add_source_files(env.editor_sources, "shader_baker_export_plugin_platform_metal.cpp")