579342810f
Implements exit codes into the engine so tests can return their statuses. Ideally we don't do this, and we use FIXUP logic to 'begin' and 'end' the engine execution for tests specifically. Since realistically we're initialising the engine here we don't want to do that, since String should not require an engine startup to test a single header. This lowers the complexity of running the unit tests and even for physics should be possible to implement such a fix.
27 lines
836 B
Python
27 lines
836 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")
|
|
|
|
env.Depends("#main/splash.gen.h", "#main/splash.png")
|
|
env.CommandNoCache("#main/splash.gen.h", "#main/splash.png", run_in_subprocess(main_builders.make_splash))
|
|
|
|
env.Depends("#main/splash_editor.gen.h", "#main/splash_editor.png")
|
|
env.CommandNoCache(
|
|
"#main/splash_editor.gen.h", "#main/splash_editor.png", run_in_subprocess(main_builders.make_splash_editor)
|
|
)
|
|
|
|
env.Depends("#main/app_icon.gen.h", "#main/app_icon.png")
|
|
env.CommandNoCache("#main/app_icon.gen.h", "#main/app_icon.png", run_in_subprocess(main_builders.make_app_icon))
|
|
|
|
if env["tools"]:
|
|
SConscript("tests/SCsub")
|
|
|
|
lib = env.add_library("main", env.main_sources)
|
|
env.Prepend(LIBS=[lib])
|