You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
595 B
21 lines
595 B
# SPDX-License-Identifier: GPL-2.0-only
|
|
#/*
|
|
# * Digital Voice Modem Shared Vocoder - CMake Build System
|
|
# * GPLv2 Open Source. Use is subject to license terms.
|
|
# * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
# *
|
|
# * Copyright (C) 2024 Bryan Biedenkapp, N2PLL
|
|
# * Copyright (C) 2025 Patrick McDonnell, W3AXL
|
|
# *
|
|
# */
|
|
|
|
cmake_minimum_required(VERSION 3.16.0)
|
|
|
|
project(dvmvocoder)
|
|
|
|
#
|
|
# Build Vocoder as a Shared Library (dll or so)
|
|
#
|
|
include(vocoder/CMakeLists.txt)
|
|
add_library(vocoder SHARED ${vocoder_SRC} ${vocoder_INCLUDE})
|
|
target_include_directories(vocoder PRIVATE vocoder) |