2020-11-07 23:33:38 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
Import("env")
|
|
|
|
|
2021-06-19 17:58:49 +02:00
|
|
|
import make_virtuals
|
|
|
|
from platform_methods import run_in_subprocess
|
|
|
|
|
|
|
|
env.CommandNoCache(["gdvirtual.gen.inc"], "make_virtuals.py", run_in_subprocess(make_virtuals.run))
|
|
|
|
|
2020-11-07 23:33:38 +01:00
|
|
|
env_object = env.Clone()
|
|
|
|
|
|
|
|
env_object.add_source_files(env.core_sources, "*.cpp")
|