app_mgr.cmake 451 B

1234567891011121314151617
  1. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  2. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  3. set (__APP_MGR_DIR ${CMAKE_CURRENT_LIST_DIR})
  4. include_directories(${__APP_MGR_DIR})
  5. file (GLOB source_all ${__APP_MGR_DIR}/*.c ${__APP_MGR_DIR}/platform/${WAMR_BUILD_PLATFORM}/*.c)
  6. set (APP_MGR_SOURCE ${source_all})
  7. file (GLOB header
  8. ${__APP_MGR_DIR}/module_wasm_app.h
  9. )
  10. LIST (APPEND RUNTIME_LIB_HEADER_LIST ${header})