mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-21 03:16:54 +01:00
16 lines
176 B
Plaintext
16 lines
176 B
Plaintext
import os
|
|
|
|
Import('env')
|
|
|
|
module_env = env.Clone()
|
|
|
|
sources = [
|
|
"register_types.cpp",
|
|
|
|
"gsai_utils.cpp",
|
|
]
|
|
|
|
|
|
module_env.add_source_files(env.modules_sources, sources)
|
|
|