no engine anymore

This commit is contained in:
2025-07-30 23:53:26 +03:00
parent 8a29e6b86f
commit 395ced9e28
159 changed files with 2767 additions and 9484 deletions

View File

@@ -5,7 +5,7 @@
CUtlString rapier_lib;
int rapier_build()
DECLARE_BUILD_STAGE(rapier)
{
rapier_lib = CUtlString("rapier/target/%s/release/librapier_rtt.a",szTarget.GetString());
V_printf("%s\n",rapier_lib.GetString());
@@ -15,8 +15,8 @@ int rapier_build()
"--target",
szTarget
};
IRunner::Run("cargo", "rapier", cargo_args);
IRunner::Wait();
runner->Run("cargo", "rapier", cargo_args);
runner->Wait();
CUtlVector<CUtlString> cbindgen_args = {
"--config",
@@ -26,9 +26,8 @@ int rapier_build()
"--output",
"../public/physics_gen.h",
};
IRunner::Run("cbindgen", "rapier", cbindgen_args);
IRunner::Wait();
runner->Run("cbindgen", "rapier", cbindgen_args);
runner->Wait();
return 0;
};
DECLARE_BUILD_STAGE(rapier, rapier_build);