gif_loader/SCsub

15 lines
187 B
Plaintext
Raw Permalink Normal View History

2022-12-10 17:06:57 +01:00
#!/usr/bin/env python
2022-12-10 17:10:58 +01:00
Import('env')
2022-12-10 17:06:57 +01:00
2022-12-10 17:10:58 +01:00
module_env = env.Clone()
2022-12-10 17:06:57 +01:00
2022-12-10 17:10:58 +01:00
sources = [
"register_types.cpp",
2022-12-10 17:06:57 +01:00
2022-12-10 17:10:58 +01:00
"gif_loader.cpp",
2022-12-10 17:06:57 +01:00
]
2022-12-10 17:10:58 +01:00
module_env.add_source_files(env.modules_sources, sources)
2022-12-10 17:06:57 +01:00