From 5b46fb8ab39cf940b7ef99552521272ef33bcac6 Mon Sep 17 00:00:00 2001 From: lwvmobile <59371473+lwvmobile@users.noreply.github.com> Date: Thu, 16 Jun 2022 05:54:32 -0400 Subject: [PATCH] Remove Building TESTS Remove Building TESTS Remove PortAudio --- CMakeLists.txt | 8 -------- 1 file changed, 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cb7cc61..f54bc16 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,6 @@ git_describe(GIT_TAG) find_package(LibSndFile REQUIRED) find_package(MBE REQUIRED) find_package(ITPP REQUIRED) -#find_package(LibPortAudio) #disabled for testing find_package(RTLSDR) find_package(Curses REQUIRED) find_package(PULSEAUDIO) @@ -67,10 +66,3 @@ configure_file( add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) - -option(DISABLE_TEST "Disable building of test framework." OFF) - -if (NOT DISABLE_TEST) - enable_testing() - add_subdirectory(test) -endif()