feat(RayFEM): initial commit

This commit is contained in:
2026-02-05 07:16:15 -05:00
commit 0f341071f4
31 changed files with 2973 additions and 0 deletions

17
src/meson.build Normal file
View File

@@ -0,0 +1,17 @@
subdir('libRayFem')
executable(
'RayFEM',
'app/main.cpp',
dependencies: [dependencies, rayfem_dep],
cpp_args: cpp_args,
c_args: c_args,
link_args: link_args
)
executable(
'exampleClient',
'app/client.cpp',
dependencies: [dependencies, rayfem_dep],
cpp_args: cpp_args,
c_args: c_args,
link_args: link_args
)