diff options
author | Matthew Gregan <[email protected]> | 2022-03-09 15:10:52 +1300 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2022-03-09 15:10:52 +1300 |
commit | 6e5b9fe38cdac65fb3cdce11cf8006a015976cad (patch) | |
tree | 71d984d9f933226c4d9af52c1b34ab5eec72512c | |
parent | a5eabe6a19bd673345164af18d5f4d2f89c98a50 (diff) | |
download | cubeb-6e5b9fe38cdac65fb3cdce11cf8006a015976cad.tar.gz cubeb-6e5b9fe38cdac65fb3cdce11cf8006a015976cad.zip |
build: Return to building bundled speexdsp as object library.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 461ab7f..9cfae64 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -139,7 +139,7 @@ if(NOT BUNDLE_SPEEX) endif() if(NOT TARGET speex) - add_library(speex STATIC subprojects/speex/resample.c) + add_library(speex OBJECT subprojects/speex/resample.c) set_target_properties(speex PROPERTIES POSITION_INDEPENDENT_CODE TRUE) target_include_directories(speex INTERFACE subprojects) target_compile_definitions(speex PUBLIC |