summaryrefslogtreecommitdiff
path: root/src/op/CMakeLists.txt
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-11-26 22:43:30 +0100
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-12-29 23:36:21 +0100
commit52c18e60929b64285d4bb333f87482d954c9b2e0 (patch)
tree836ab3a01d160f45cda4f5a28522fc0bf471011c /src/op/CMakeLists.txt
downloadnanowasm-first-step.tar.gz
First commitfirst-step
Diffstat (limited to 'src/op/CMakeLists.txt')
-rw-r--r--src/op/CMakeLists.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/op/CMakeLists.txt b/src/op/CMakeLists.txt
new file mode 100644
index 0000000..a97b212
--- /dev/null
+++ b/src/op/CMakeLists.txt
@@ -0,0 +1,28 @@
+target_sources(${PROJECT_NAME} PRIVATE
+ unreachable.c
+ nop.c
+ block.c
+ loop.c
+ if.c
+ else.c
+ end.c
+ br.c
+ br_if.c
+ br_table.c
+ return.c
+ call.c
+ call_indirect.c
+ get_local.c
+ set_local.c
+ tee_local.c
+ get_global.c
+ set_global.c
+ i32_load.c
+ i32_store.c
+ current_memory.c
+ i32_const.c
+ i64_const.c
+ f32_const.c
+ f64_const.c
+ i32_sub.c
+)