mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
14 lines
211 B
Python
14 lines
211 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
|
|
env_mlp = env.Clone()
|
|
|
|
sources = [
|
|
"register_types.cpp",
|
|
"lz4_compressor.cpp",
|
|
"thirdparty/lz4/lz4.c",
|
|
]
|
|
|
|
env_mlp.add_source_files(env.modules_sources, sources)
|