Open MilhouseVH opened 8 years ago
@MilhouseVH Sorry for the late response, but I didn't had the time to look deeper into it.
https://github.com/kodi-adsp/adsp.biquad.filters/blob/master/Findasplib.cmake#L14 - why does this file have the prefix apslib and all the others are asplib? I'm assuming it's a typo, although the file does actually exist with the apslib prefix...
find_path(ASPLIB_INCLUDE_DIRS "apslib_BiquadFactory.h"
should be find_path(ASPLIB_INCLUDE_DIRS " "Biquads/apslib_BiquadFactory.h"
. All files of asplib should have the prefix asplib
.
https://github.com/kodi-adsp/adsp.biquad.filters/blob/master/Findasplib.cmake#L26 SAMPLERATE_FOUND https://github.com/kodi-adsp/adsp.biquad.filters/blob/master/Findasplib.cmake#L1 - should be asplib, not libsamplerate - it's a little confusing for us cmake noobs. :)
Yeah you're right. It should be asplib and not libsamplerate. That was one of my first CMake files and I was so happy that it worked and I didn't improve the copy and paste comments ;-)
All of this will be fixed in the next release of asplib. Thanks for the hints.
Could of minors:
https://github.com/kodi-adsp/adsp.biquad.filters/blob/master/Findasplib.cmake#L1 - should be
asplib
, notlibsamplerate
- it's a little confusing for us cmake noobs. :)https://github.com/kodi-adsp/adsp.biquad.filters/blob/master/Findasplib.cmake#L14 - why does this file have the prefix
apslib
and all the others areasplib
? I'm assuming it's a typo, although the file does actually exist with theapslib
prefix...