mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-20 19:06:53 +01:00
17 lines
240 B
Plaintext
17 lines
240 B
Plaintext
|
import os
|
||
|
import version
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
module_env = env.Clone()
|
||
|
|
||
|
sources = [
|
||
|
"register_types.cpp",
|
||
|
"unit_test.cpp",
|
||
|
"unit_test_db.cpp",
|
||
|
"unit_test_runner.cpp",
|
||
|
]
|
||
|
|
||
|
module_env.add_source_files(env.modules_sources, sources)
|
||
|
|