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
meson.build Normal file
View File

@@ -0,0 +1,17 @@
project('RayFEM', ['cpp', 'c'],
version : '0.1.0',
default_options : ['warning_level=3', 'cpp_std=c++23'])
c_args = []
cpp_args = []
link_args = []
name_suffix = []
dependencies = []
add_project_arguments('-U_FORTIFY_SOURCE', '-D_FORTIFY_SOURCE=0', language: 'cpp')
cc = meson.get_compiler('c')
cxx = meson.get_compiler('cpp')
subdir('build-config')
subdir('src')