mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-08 13:12:09 +01:00
14 lines
153 B
Plaintext
14 lines
153 B
Plaintext
import os
|
|
|
|
Import('env')
|
|
|
|
module_env = env.Clone()
|
|
|
|
sources = [
|
|
"register_types.cpp",
|
|
]
|
|
|
|
|
|
module_env.add_source_files(env.modules_sources, sources)
|
|
|