mem_alloc.cmake 383 B

123456789101112131415
  1. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  2. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  3. set (MEM_ALLOC_DIR ${CMAKE_CURRENT_LIST_DIR})
  4. include_directories(${MEM_ALLOC_DIR})
  5. file (GLOB_RECURSE source_all
  6. ${MEM_ALLOC_DIR}/ems/*.c
  7. ${MEM_ALLOC_DIR}/tlsf/*.c
  8. ${MEM_ALLOC_DIR}/mem_alloc.c)
  9. set (MEM_ALLOC_SHARED_SOURCE ${source_all})