16 lines
518 B
CMake
16 lines
518 B
CMake
cmake_minimum_required(VERSION 3.24)
|
|
|
|
add_library(signalsmith-stretch INTERFACE)
|
|
set_target_properties(signalsmith-stretch PROPERTIES INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
|
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
signalsmith-linear
|
|
GIT_REPOSITORY https://github.com/Signalsmith-Audio/linear.git
|
|
GIT_TAG 321e1280c2cc4d11d3f33e912af3f4d2041583ec
|
|
GIT_SHALLOW ON
|
|
)
|
|
FetchContent_MakeAvailable(signalsmith-linear)
|
|
|
|
target_link_libraries(signalsmith-stretch INTERFACE signalsmith-linear)
|