From 15b6fb0edd01e7ef9afa18ec1ac2cde00b84ff43 Mon Sep 17 00:00:00 2001 From: leo60228 Date: Tue, 7 Sep 2021 11:47:41 -0400 Subject: [PATCH] Remove -sFORCE_FILESYSTEM=1 from compile options The latest Emscripten will warn that it should only be passed as a linker option. --- desktop_version/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/desktop_version/CMakeLists.txt b/desktop_version/CMakeLists.txt index 16128f99..2284245f 100644 --- a/desktop_version/CMakeLists.txt +++ b/desktop_version/CMakeLists.txt @@ -345,7 +345,6 @@ if(HAIKU) target_link_libraries(VVVVVV ${BE_LIBRARY} ${ROOT_LIBRARY}) endif() if(EMSCRIPTEN) - target_compile_options(VVVVVV PUBLIC -sFORCE_FILESYSTEM=1) # 256MB is enough for everybody target_link_libraries(VVVVVV -sFORCE_FILESYSTEM=1 -sTOTAL_MEMORY=256MB) endif()