mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
14 lines
251 B
Python
14 lines
251 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
|
|
from platform_methods import run_in_subprocess
|
|
import main_builders
|
|
|
|
env.main_sources = []
|
|
|
|
env.add_source_files(env.main_sources, "*.cpp")
|
|
|
|
lib = env.add_library("main", env.main_sources)
|
|
env.Prepend(LIBS=[lib])
|