From b8eb2799f954b742e11b997d6335f6422678242d Mon Sep 17 00:00:00 2001 From: bjorn Date: Thu, 26 Apr 2018 22:37:46 -0700 Subject: [PATCH] Fix quotes for windows shells; --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 514d609d..6f772658 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ if(EMSCRIPTEN) "-s USE_GLFW=3 " "-s USE_ZLIB=1 " "-s ALLOW_MEMORY_GROWTH=1 " - "-s 'EXTRA_EXPORTED_RUNTIME_METHODS=[\"getValue\", \"setValue\"]' " + "-s EXTRA_EXPORTED_RUNTIME_METHODS=['getValue','setValue'] " "-s WASM=1" ) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${LOVR_EMSCRIPTEN_FLAGS}")