mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +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)
|
|
|