Disable Python tests if the option enable_test is false.

This commit is contained in:
Fangjun Kuang 2021-10-31 10:52:40 +08:00
parent 78e79b7b35
commit 06ee93c6b1

View File

@ -1,2 +1,5 @@
add_subdirectory(csrc)
add_subdirectory(tests)
if(kaldifeat_BUILD_TESTS)
add_subdirectory(tests)
endif()