restructure
This commit is contained in:
parent
2e7d05f783
commit
ce9489b5d2
17 changed files with 16 additions and 17 deletions
32
meson.build
32
meson.build
|
|
@ -6,24 +6,24 @@ project(
|
||||||
default_options : ['c_std=c11', 'buildtype=debugoptimized', 'warning_level=3'],
|
default_options : ['c_std=c11', 'buildtype=debugoptimized', 'warning_level=3'],
|
||||||
)
|
)
|
||||||
|
|
||||||
inc = include_directories('include', 'src')
|
inc = include_directories('include', 'src/core')
|
||||||
src = [
|
src = [
|
||||||
'src/compile.c',
|
'src/core/compile.c',
|
||||||
'src/disasm.c',
|
'src/core/disasm.c',
|
||||||
'src/error.c',
|
'src/core/error.c',
|
||||||
'src/gc.c',
|
'src/core/gc.c',
|
||||||
'src/interp.c',
|
'src/core/interp.c',
|
||||||
'src/lex.c',
|
'src/core/lex.c',
|
||||||
'src/list.c',
|
'src/core/list.c',
|
||||||
|
'src/core/pair.c',
|
||||||
|
'src/core/prim.c',
|
||||||
|
'src/core/print.c',
|
||||||
|
'src/core/read.c',
|
||||||
|
'src/core/string.c',
|
||||||
|
'src/core/symbol.c',
|
||||||
|
'src/core/type.c',
|
||||||
|
'src/core/vm.c',
|
||||||
'src/main.c',
|
'src/main.c',
|
||||||
'src/pair.c',
|
|
||||||
'src/prim.c',
|
|
||||||
'src/print.c',
|
|
||||||
'src/read.c',
|
|
||||||
'src/string.c',
|
|
||||||
'src/symbol.c',
|
|
||||||
'src/type.c',
|
|
||||||
'src/vm.c',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
exe = executable(
|
exe = executable(
|
||||||
|
|
|
||||||
|
|
@ -21,4 +21,3 @@ Ss *string_unwrap(In *in, O str) {
|
||||||
}
|
}
|
||||||
return (Ss *)(UNBOX(str) + 1);
|
return (Ss *)(UNBOX(str) + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue