build: simple build using CMake (manually add src/ext/libsndfile)
Some checks failed
macOS and iOS CI / build (push) Has been cancelled
Windows CI / build (push) Has been cancelled

This commit is contained in:
2026-03-07 00:20:05 +01:00
parent e4296ac80b
commit 4e1bb95234
12 changed files with 77 additions and 2 deletions

View File

@@ -49,6 +49,7 @@ using RubberBand::gettimeofday;
#endif
#ifdef _MSC_VER
#define NOMINMAX
#include <windows.h>
static void usleep(unsigned long usec) {
::Sleep(usec == 0 ? 0 : usec < 1000 ? 1 : usec / 1000);