libc_emcc.cmake 333 B

123456789101112
  1. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  2. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  3. set (LIBC_EMCC_DIR ${CMAKE_CURRENT_LIST_DIR})
  4. add_definitions (-DWASM_ENABLE_LIBC_EMCC=1)
  5. include_directories(${LIBC_EMCC_DIR})
  6. file (GLOB source_all ${LIBC_EMCC_DIR}/*.c)
  7. set (LIBC_EMCC_SOURCE ${source_all})