mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 23:15:16 +00:00
16 lines
383 B
CMake
16 lines
383 B
CMake
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
|
|
set (MEM_ALLOC_DIR ${CMAKE_CURRENT_LIST_DIR})
|
|
|
|
include_directories(${MEM_ALLOC_DIR})
|
|
|
|
file (GLOB_RECURSE source_all
|
|
${MEM_ALLOC_DIR}/ems/*.c
|
|
${MEM_ALLOC_DIR}/tlsf/*.c
|
|
${MEM_ALLOC_DIR}/mem_alloc.c)
|
|
|
|
set (MEM_ALLOC_SHARED_SOURCE ${source_all})
|
|
|