wasm-micro-runtime/samples/linking/raw/CMakeLists.txt
liang.he e030350bd7
[instantiation linking] create and import WASMMemoryInstance for interp (#3845)
APIs to create and import WASMMemoryInstance for Interp

- add a demo (sample/linking/raw) for APIs test
- new APIs for instances of spawned threads to build imports list from parents'
2024-11-04 15:38:20 +08:00

7 lines
276 B
CMake

# Copyright (C) 2019 Intel Corporation. All rights reserved.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
include (${SHARED_DIR}/utils/uncommon/shared_uncommon.cmake)
add_executable(raw main.c ${UNCOMMON_SHARED_SOURCE})
target_link_libraries(raw PRIVATE vmlib)