debug_engine.cmake 341 B

123456789101112
  1. # Copyright (C) 2021 Ant Group. All rights reserved.
  2. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  3. set (DEBUG_ENGINE_DIR ${CMAKE_CURRENT_LIST_DIR})
  4. add_definitions (-DWASM_ENABLE_DEBUG_INTERP=1)
  5. include_directories(${DEBUG_ENGINE_DIR})
  6. file (GLOB source_all ${DEBUG_ENGINE_DIR}/*.c)
  7. set (DEBUG_ENGINE_SOURCE ${source_all})