mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-11 09:25:20 +00:00
13 lines
349 B
CMake
13 lines
349 B
CMake
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
set (LIB_COAP_DIR ${CMAKE_CURRENT_LIST_DIR})
|
|
|
|
include_directories(${LIB_COAP_DIR}/er-coap)
|
|
include_directories(${LIB_COAP_DIR}/extension)
|
|
|
|
file (GLOB_RECURSE source_all ${LIB_COAP_DIR}/*.c)
|
|
|
|
set (LIB_COAP_SOURCE ${source_all})
|
|
|