mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-23 09:28:07 +01:00
18 lines
212 B
Plaintext
18 lines
212 B
Plaintext
import os
|
|
|
|
Import('env')
|
|
|
|
module_env = env.Clone()
|
|
|
|
|
|
sources = [
|
|
"register_types.cpp",
|
|
|
|
"algos/mm_algos.cpp",
|
|
"algos/mm_algos_bind.cpp",
|
|
]
|
|
|
|
|
|
module_env.add_source_files(env.modules_sources, sources)
|
|
|