From 9f57f82b49ed0aaefd55f3eb6eed4479acb5c73c Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 24 May 2023 16:25:44 +0200 Subject: [PATCH] Fix wasm build Signed-off-by: falkTX --- source/backend/utils/CarlaUtils.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/backend/utils/CarlaUtils.cpp b/source/backend/utils/CarlaUtils.cpp index f3005e63d..5e56c8b52 100644 --- a/source/backend/utils/CarlaUtils.cpp +++ b/source/backend/utils/CarlaUtils.cpp @@ -15,7 +15,11 @@ * For a full copy of the GNU General Public License see the doc/GPL.txt file. */ -#include "CarlaBridgeUtils.cpp" +#include "CarlaUtils.hpp" + +#ifndef CARLA_OS_WASM +# include "CarlaBridgeUtils.cpp" +#endif #ifdef CARLA_OS_MAC # include "CarlaMacUtils.cpp"