aboutsummaryrefslogtreecommitdiff
path: root/src/interp/routines/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/routines/CMakeLists.txt')
-rw-r--r--src/interp/routines/CMakeLists.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/interp/routines/CMakeLists.txt b/src/interp/routines/CMakeLists.txt
new file mode 100644
index 0000000..b27172b
--- /dev/null
+++ b/src/interp/routines/CMakeLists.txt
@@ -0,0 +1,13 @@
+# 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
+ execute.c
+ find_export.c
+ full.c
+ limited.c
+)