blob: 4b4a5315bfdc74d17b406108fdeea13533bd4f64 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# nanowasm, a tiny WebAssembly/Wasm interpreter
# Copyright (C) 2023-2025 Xavier Del Campo Romero
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
target_sources(${PROJECT_NAME} PRIVATE
block.c
br.c
br_if.c
call.c
call_indirect.c
drop.c
end.c
get_local.c
get_global.c
i32_add.c
i32_and.c
i32_const.c
i32_eq.c
i32_eqz.c
i32_ge_s.c
i32_ge_u.c
i32_load.c
i32_load8_u.c
i32_lt_s.c
i32_lt_u.c
i32_mul.c
i32_ne.c
i32_or.c
i32_shl.c
i32_store.c
i32_store8.c
i32_sub.c
i64_const.c
i64_store.c
loop.c
nop.c
return.c
set_global.c
set_local.c
tee_local.c
tostr.c
unreachable.c
)
add_subdirectory(check)
|