From a91640cd8d53e0e29974f25ae526f9fec267baa8 Mon Sep 17 00:00:00 2001 From: "J.A. de Jong - ASCEE" Date: Fri, 5 Apr 2024 06:49:48 -0700 Subject: [PATCH] Explicit picking of driver for windows. --- cmake/portaudio.cmake | 4 ++++ pyproject.toml | 7 ------- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/cmake/portaudio.cmake b/cmake/portaudio.cmake index ae6dca5..fca9f66 100644 --- a/cmake/portaudio.cmake +++ b/cmake/portaudio.cmake @@ -3,6 +3,10 @@ if(LASP_HAS_PORTAUDIO) message("Building with Portaudio backend") if(WIN32) set(PA_USE_ALSA FALSE CACHE BOOL "Build PortAudio with ALSA backend") + set(PA_USE_ASIO TRUE CACHE BOOL "Build PortAudio with ASIO backend") + set(PA_USE_DS FALSE CACHE BOOL "Build PortAudio with Directsound backend") + set(PA_USE_WMME FALSE CACHE BOOL "Build PortAudio with WMME backend") + set(PA_USE_WDMKS FALSE CACHE BOOL "Build PortAudio with WDMKS backend") else() # Unix set(PA_USE_ALSA TRUE CACHE BOOL "Build PortAudio with ALSA backend") diff --git a/pyproject.toml b/pyproject.toml index 0143cf6..77a05c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,10 +59,3 @@ install_components = ["python_modules"] # This might not work properly on Windows. Comment this out when testing on # Windows. mode = "symlink" - -[tool.commitizen] -name = "cz_conventional_commits" -tag_format = "v$version" -version_scheme = "semver" -version_provider = "pep621" -update_changelog_on_bump = true