wasm_app.cmake 400 B

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