From ff2da7fb27f0ea7a15b1dc6b6daf763fe7faf13b Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 6 Sep 2020 12:16:09 +0200 Subject: Move benchmark demos into their own directory. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index a766033..100b8bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [workspace] members = [ "build/rapier2d", "build/rapier_testbed2d", "examples2d", - "build/rapier3d", "build/rapier_testbed3d", "examples3d" ] + "build/rapier3d", "build/rapier_testbed3d", "examples3d", "benchmarks3d" ] [patch.crates-io] #wrapped2d = { git = "https://github.com/Bastacyclop/rust_box2d.git" } [profile.release] -debug = false +debug = true codegen-units = 1 #opt-level = 1 #lto = true -- cgit From 17edd0d46a9f792fbb7337f93a927b3ae992455f Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 6 Sep 2020 12:55:01 +0200 Subject: Disable debug symbols in release mode. I think this affects the performance of PhysX. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 100b8bb..8ccf463 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ "build/rapier2d", "build/rapier_testbed2d", "examples2d", #wrapped2d = { git = "https://github.com/Bastacyclop/rust_box2d.git" } [profile.release] -debug = true +#debug = true codegen-units = 1 #opt-level = 1 #lto = true -- cgit From e7466e2f6923d24e987a34f8ebaf839346af8d4e Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Mon, 28 Sep 2020 10:19:49 +0200 Subject: Move 2D benchmarks into their own directory/crate. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 8ccf463..b4ce57e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] -members = [ "build/rapier2d", "build/rapier_testbed2d", "examples2d", +members = [ "build/rapier2d", "build/rapier_testbed2d", "examples2d", "benchmarks2d", "build/rapier3d", "build/rapier_testbed3d", "examples3d", "benchmarks3d" ] [patch.crates-io] -- cgit