libsndfile / libsamplerate

An audio Sample Rate Conversion library
http://libsndfile.github.io/libsamplerate/
BSD 2-Clause "Simplified" License
600 stars 167 forks source link

fix BUILD_TESTING option #177

Closed ferluht closed 2 years ago

ferluht commented 2 years ago

BUILD_TESTING was always set to ON by include(CTest) Now LIBSAMPLERATE_TESTS can be used to disable tests build

evpobr commented 2 years ago

Hi @ferluht . To disable tests set BUILD_TESTING to OFF from command line, CTest module will not enable it again if it disabled manually. Documentation lack here.

cmake .. -DBUILD_TESTING=OFF
ferluht commented 2 years ago

Yes, that works in case of console build. My case is to build libsamplerate as a subproject from upper CMakeLists, so this option doesn't work without libsamplerate code change

evpobr commented 2 years ago

thanks @ferluht .