Hi!
I'm trying to build the asplib as it is needed by the adsp.biquad.filters and I'm failing with a cmake error. I'm using KODI 17.03 and so far I was able to build all the add-ons I wanted.
The steps I ran so far:
git clone
https://github.com/AchimTuran/asplib.git
cd asplib/
cmake -DCMAKE_INSTALL_PREFIX=/usr
Following is the error I'm getting stuck with:
_______________________________
-- asplib_DESCRIPTION=asplib (Achim's Signal Processing LIBrary), is a small and lightweight C++ library for digital signal processing.
-- asplib_SOURCE_DIR=/kit/asplib
-- asplib_VERSION=1.0
-- asplib_VERSION_MAJOR=1
-- asplib_VERSION_MINOR=0
-- asplib_VERSION_TWEAK=
-- f=
-- path=
-- portaudio_BINARY_DIR=/kit/asplib/depends/0build/portaudio
-- portaudio_DIR=portaudio_DIR-NOTFOUND
-- portaudio_LIB_DEPENDS=general;/usr/lib/libasound.so;
-- portaudio_SOURCE_DIR=/kit/asplib/depends/portaudio
-- portaudio_static_LIB_DEPENDS=general;/usr/lib/libasound.so;
-- type=
--
-- asplib - Configuration:
-- CMAKE_BUILD_TYPE:
-- CMAKE_INSTALL_PREFIX: /usr
--
-- Configuring done
CMake Error in asplib_modules/AudioInterfaces/CMakeLists.txt:
Target "AudioInterfaces" INTERFACE_INCLUDE_DIRECTORIES property contains
path:
"/kit/asplib/depends/portaudio/include"
which is prefixed in the build directory.
CMake Error: install(EXPORT "asplib" ...) includes target "AudioInterfaces" which requires target "portaudio_static" that is not in the export set.
-- Generating done
-- Build files have been written to: /kit/asplib
________________________________________________
Any help appreciated!