diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-29 08:54:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-29 08:54:59 +0100 |
commit | 76725b6c1f73c8d160ad91b42c803a54c78298d4 (patch) | |
tree | bb650e1328d9436d317fdf5d7dd3bdceafe7d588 /scene | |
parent | 6a83c8e8edffb84f5c30f4f1ecd705ee213aff4d (diff) | |
parent | a65c0939fd1adc616275ad01996917fab89a7b9c (diff) |
Merge pull request #13387 from rraallvv/refactor
Add target helper functions and refactor (master)
Diffstat (limited to 'scene')
-rw-r--r-- | scene/SCsub | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scene/SCsub b/scene/SCsub index bec1b40ed6..5d81e818ba 100644 --- a/scene/SCsub +++ b/scene/SCsub @@ -30,8 +30,7 @@ SConscript('resources/SCsub') # Build it all as a library -lib = env.Library("scene", env.scene_sources) -env.NoCache(lib) +lib = env.add_library("scene", env.scene_sources) env.Prepend(LIBS=[lib]) Export('env') |