summaryrefslogtreecommitdiff
path: root/examples/SConscript
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-10-01 13:29:47 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-10-01 13:29:47 +0200
commitac2bc7ccecc202a152caf900debbf79cae8745a6 (patch)
treecf2f4cefb488231c9d898a257af5c6e8d2a6a71a /examples/SConscript
parentf53b62f995af1ad0e7cbc8aa3a7522d041eb9363 (diff)
downloadlibs-lbm-ac2bc7ccecc202a152caf900debbf79cae8745a6.tar.gz
Dangling commit with lots of changes
Importantly it restructures the example I'm using the most and it fixes a index access issue in the collision
Diffstat (limited to 'examples/SConscript')
-rw-r--r--examples/SConscript6
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/SConscript b/examples/SConscript
index 3a22897..e8c89b1 100644
--- a/examples/SConscript
+++ b/examples/SConscript
@@ -48,11 +48,6 @@ examples_objects = [];
examples_env.add_source_files(examples_objects, ['poiseulle_channel_2d.cpp'], shared=False);
examples_env.poiseulle_channel_2d = examples_env.Program('#bin/poiseulle_channel_2d', [env.library_static, examples_objects]);
-# Poiseulle Particles Channel 2D
-examples_objects = [];
-examples_env.add_source_files(examples_objects, ['poiseulle_particles_channel_2d.cpp'], shared=False);
-examples_env.poiseulle_particles_channel_2d = examples_env.Program('#bin/poiseulle_particles_channel_2d', [env.library_static, examples_objects]);
-
# Set Alias
env.examples = [
examples_env.meta_2d,
@@ -61,7 +56,6 @@ env.examples = [
# examples_env.particle_ibm_2d
# examples_env.poiseulle_2d,
# examples_env.poiseulle_channel_2d,
- examples_env.poiseulle_particles_channel_2d
];
env.Alias('examples', env.examples);