mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 06:45:37 +08:00
refactor: Move chunkware to third_party
This commit is contained in:
29
third_party/chunkware_dsp/CMakeLists.txt
vendored
Normal file
29
third_party/chunkware_dsp/CMakeLists.txt
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# SPDX-FileCopyrightText: Copyright (C) swift Project Community / Contributors
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
||||
|
||||
add_library(ChunkwareDsp STATIC)
|
||||
target_sources(ChunkwareDsp
|
||||
PRIVATE
|
||||
SimpleComp.cpp
|
||||
SimpleComp.h
|
||||
SimpleCompProcess.inl
|
||||
SimpleEnvelope.cpp
|
||||
SimpleEnvelope.h
|
||||
SimpleGain.h
|
||||
SimpleGate.cpp
|
||||
SimpleGate.h
|
||||
SimpleGateProcess.inl
|
||||
SimpleHeader.h
|
||||
SimpleLimit.cpp
|
||||
SimpleLimit.h
|
||||
SimpleLimitProcess.inl
|
||||
)
|
||||
target_include_directories(ChunkwareDsp
|
||||
PUBLIC
|
||||
${PROJECT_SOURCE_DIR}/third_party
|
||||
)
|
||||
set_property(TARGET ChunkwareDsp PROPERTY POSITION_INDEPENDENT_CODE ON)
|
||||
set_source_files_properties(SimpleComp.cpp PROPERTIES SKIP_LINTING ON)
|
||||
set_source_files_properties(SimpleEnvelope.cpp PROPERTIES SKIP_LINTING ON)
|
||||
set_source_files_properties(SimpleGate.cpp PROPERTIES SKIP_LINTING ON)
|
||||
set_source_files_properties(SimpleLimit.cpp PROPERTIES SKIP_LINTING ON)
|
||||
Reference in New Issue
Block a user