From b8e16af38f80f4d588ab35f163a441f791374ffe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20L=C3=B3pez-Cabanillas?= Date: Sat, 9 Mar 2024 22:29:36 +0100 Subject: [PATCH] do not use a submodule --- .../{build-linux-with-submodule.yml => build-linux.yml} | 0 CMakeLists.txt | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename .github/workflows/{build-linux-with-submodule.yml => build-linux.yml} (100%) diff --git a/.github/workflows/build-linux-with-submodule.yml b/.github/workflows/build-linux.yml similarity index 100% rename from .github/workflows/build-linux-with-submodule.yml rename to .github/workflows/build-linux.yml diff --git a/CMakeLists.txt b/CMakeLists.txt index 810c26e..fa0f7e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,8 @@ pkg_check_modules(PULSE REQUIRED IMPORTED_TARGET libpulse-simple) find_package(sonivox 3.6.12 CONFIG) if (NOT sonivox_FOUND) - add_subdirectory(sonivox) + message(FATAL_ERROR "Sonivox library not found") + #add_subdirectory(sonivox) endif() message(STATUS "Using Sonivox version: ${sonivox_VERSION}") add_subdirectory(libsvoxeas)