mirror of
https://github.com/Relintai/gif_loader.git
synced 2024-11-12 10:25:04 +01:00
15 lines
187 B
Python
15 lines
187 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
module_env = env.Clone()
|
|
|
|
sources = [
|
|
"register_types.cpp",
|
|
|
|
"gif_loader.cpp",
|
|
]
|
|
|
|
module_env.add_source_files(env.modules_sources, sources)
|
|
|