From 0b3aaa8cedb0d732fb15820db7eda2c841657d2d Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Sat, 20 Nov 2021 22:39:48 +0100 Subject: [PATCH] Remove the thread dependency with emscripten --- cmake/SfizzDeps.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmake/SfizzDeps.cmake b/cmake/SfizzDeps.cmake index ddbcaaeee..44a87134d 100644 --- a/cmake/SfizzDeps.cmake +++ b/cmake/SfizzDeps.cmake @@ -2,10 +2,6 @@ include(CheckCXXSourceCompiles) # Find system threads find_package(Threads REQUIRED) -if (EMSCRIPTEN) - add_link_options("-s USE_PTHREADS=1") -endif() - # Find OpenMP find_package(OpenMP)