summaryrefslogtreecommitdiff
path: root/modules/gltf/SCsub
blob: d1f337715f57076d98b76cc4e4edaa503cda84e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

Import("env")
Import("env_modules")

env_gltf = env_modules.Clone()

# Godot source files
env_gltf.add_source_files(env.modules_sources, "*.cpp")
env_gltf.add_source_files(env.modules_sources, "structures/*.cpp")
SConscript("extensions/SCsub")
if env.editor_build:
    env_gltf.add_source_files(env.modules_sources, "editor/*.cpp")