Merge branch 'improve_compile_error'

This commit is contained in:
2026-02-20 14:39:51 -06:00
65 changed files with 2255 additions and 1376 deletions

View File

@@ -64,11 +64,18 @@ src += ['qbe_helpers.c']
src += ['qbe_backend.c']
scripts = [
'json.c',
'internal/nota.c',
'internal/wota.c',
'math/radians.c',
'math/degrees.c',
'math/cycles.c',
'src/cell_math.c',
'debug/js.c',
'qop.c',
'wildstar.c',
'internal/qop.c',
'internal/wildstar.c',
'fit.c',
'crypto.c',
'internal/crypto.c',
'internal/kim.c',
'internal/time.c',
'debug/debug.c',
@@ -76,7 +83,6 @@ scripts = [
'internal/fd.c',
'net/http.c',
'net/enet.c',
'wildstar.c',
'archive/miniz.c',
'source/cJSON.c'
]
@@ -86,7 +92,7 @@ foreach file: scripts
endforeach
srceng = 'source'
includes = [srceng, 'internal', 'debug', 'net', 'archive', 'src/qbe']
includes = [srceng, 'internal', 'debug', 'net', 'archive', 'src/qbe', 'src']
foreach file : src
full_path = join_paths(srceng, file)