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