# | |
# Copyright © 2025 Agora | |
# This file is part of TEN Framework, an open source project. | |
# Licensed under the Apache License, Version 2.0, with certain conditions. | |
# Refer to the "LICENSE" file in the root directory for more information. | |
# | |
cmake_minimum_required(VERSION 3.10) | |
get_filename_component(ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../ ABSOLUTE) | |
project(ten_vad) | |
set(CMAKE_BUILD_TYPE Release) | |
add_compile_options(-Wno-write-strings -Wno-unused-result) | |
include_directories(${ROOT}/src) | |
include_directories(${ROOT}/include) | |
include_directories(${ORT_ROOT}/include) | |
file(GLOB LIBRARY_SOURCES "${ROOT}/src/*.cc" "${ROOT}/src/*.c") | |
add_library(ten_vad SHARED ${LIBRARY_SOURCES}) | |
link_directories(${ORT_ROOT}/lib) | |
target_link_libraries(ten_vad "${ORT_ROOT}/lib/libonnxruntime.so") | |
set(EXECUTABLE_SOURCES ${ROOT}/examples/main.c) | |
add_executable(ten_vad_demo ${EXECUTABLE_SOURCES}) | |
target_link_libraries(ten_vad_demo ten_vad) | |