diff options
| author | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-01-21 17:20:08 +0100 |
|---|---|---|
| committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2026-01-21 17:20:08 +0100 |
| commit | e60db388693b63be6d7e4c03234976b567378e94 (patch) | |
| tree | 3abb03636e8b10b575b746e3406e10fbf458903b /lib/sycl/c++/SConscript | |
| parent | b685014dd2c9cc88ed8ecef31530842309decf62 (diff) | |
| download | libs-lbm-e60db388693b63be6d7e4c03234976b567378e94.tar.gz | |
Fixing compilation errors
Diffstat (limited to 'lib/sycl/c++/SConscript')
| -rw-r--r-- | lib/sycl/c++/SConscript | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/sycl/c++/SConscript b/lib/sycl/c++/SConscript index 85a078f..2ed63ba 100644 --- a/lib/sycl/c++/SConscript +++ b/lib/sycl/c++/SConscript @@ -15,18 +15,13 @@ core_env = env.Clone(); core_env.sources = sorted(glob.glob(dir_path + "/*.cpp")); core_env.headers = sorted(glob.glob(dir_path + "/*.hpp")); -core_env.particle_headers = sorted(glob.glob(dir_path + "/particle/*.hpp")); -core_env.particle_geometry_headers = sorted(glob.glob(dir_path + "/particle/geometry/*.hpp")); - env.sources += core_env.sources; env.headers += core_env.headers; ## Static lib objects = [] core_env.add_source_files(objects, core_env.sources, shared=False); -env.library_static = core_env.StaticLibrary('#build/kel-lbm', [objects]); +env.library_static = core_env.StaticLibrary('#build/kel-lbm-sycl', [objects]); env.Install('$prefix/lib/', env.library_static); -env.Install('$prefix/include/kel/lbm/', core_env.headers); -env.Install('$prefix/include/kel/lbm/particle/', core_env.particle_headers); -env.Install('$prefix/include/kel/lbm/particle/geometry/', core_env.particle_geometry_headers); +env.Install('$prefix/include/kel/lbm/sycl/', core_env.headers); |
