wasm_lib.cmake 405 B

1234567891011121314151617
  1. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  2. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  3. set (WASM_LIB_CURRENT_DIR ${CMAKE_CURRENT_LIST_DIR})
  4. include_directories(
  5. ${WASM_LIB_CURRENT_DIR}
  6. # Add your include dir here
  7. )
  8. file (GLOB_RECURSE source_all
  9. ${WASM_LIB_CURRENT_DIR}/*.c
  10. # Add your source file here
  11. )
  12. set (WASM_APP_LIB_CURRENT_SOURCE ${source_all})