summaryrefslogtreecommitdiff
path: root/examples/meta_2d/SConscript
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-02-25 20:33:36 +0100
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-02-25 20:33:36 +0100
commit2ac145b3bb6d2de3887ab08e0cf26423b5e6c5ee (patch)
tree982dbf24a97609dee82bf2ebc451140f2c1af89b /examples/meta_2d/SConscript
parent0e68b9b33fc84528bcef2774b8fe34da5b600b55 (diff)
downloadlibs-lbm-2ac145b3bb6d2de3887ab08e0cf26423b5e6c5ee.tar.gz
Changes to run, reworking meta reporting for easier estimation of
runtime parameters
Diffstat (limited to 'examples/meta_2d/SConscript')
-rw-r--r--examples/meta_2d/SConscript32
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/meta_2d/SConscript b/examples/meta_2d/SConscript
deleted file mode 100644
index f14fd77..0000000
--- a/examples/meta_2d/SConscript
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/false
-
-import os
-import os.path
-import glob
-
-
-Import('env')
-
-dir_path = Dir('.').abspath
-
-# Environment for base library
-examples_env = env.Clone();
-
-examples_env.sources = sorted(glob.glob(dir_path + "/*.cpp"))
-examples_env.headers = sorted(glob.glob(dir_path + "/*.hpp"))
-
-env.sources += examples_env.sources;
-env.headers += examples_env.headers;
-
-# Cavity2D
-examples_objects = [];
-examples_env.add_source_files(examples_objects, ['meta_2d.cpp'], shared=False);
-examples_env.meta_2d = examples_env.Program('#bin/meta_2d', [examples_objects]);
-
-# Set Alias
-env.examples = [
- examples_env.meta_2d
-];
-env.Alias('examples', env.examples);
-env.targets += ['examples'];
-env.Install('$prefix/bin/', env.examples);