Now all configurable with json.

This commit is contained in:
Zed A. Shaw 2026-08-26 19:56:01 -04:00
parent 3041ae0172
commit d3169d3eca
25 changed files with 720 additions and 244 deletions

View file

@ -61,12 +61,12 @@ glfw3 = subproject('glfw').get_variable('glfw_dep')
fuc2 = subproject('fuc2').get_variable('fuc2_dep')
fmt = subproject('fmt').get_variable('fmt_dep')
glm = subproject('glm').get_variable('glm_dep')
box2d = subproject('box2d').get_variable('box2d_dep')
json = subproject('nlohmann_json').get_variable('nlohmann_json_dep')
assimp = subproject('assimp').get_variable('assimp_dep')
dependencies += [
glfw3, fuc2, fmt, glm, box2d, assimp
glfw3, fuc2, fmt, glm, assimp, json
]
inc_dirs = ['src']
@ -76,8 +76,8 @@ sources = [
'src/dbc.cpp',
'src/stb_image.cpp',
'src/shader.cpp',
'src/physics.cpp',
'src/mesh.cpp',
'src/utils.cpp',
'src/model.cpp',
'src/scene.cpp',
'src/camera.cpp',