We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d76d7f commit a1bae08Copy full SHA for a1bae08
.gitignore
@@ -36,3 +36,5 @@
36
/enc_temp_folder
37
/cpm-cache
38
/old
39
+
40
+emsdk
tests/CMakeLists.txt
@@ -5,7 +5,8 @@ add_executable(test "test.cpp")
5
target_link_libraries(test PRIVATE FastSIMD test_simd)
6
7
if(CMAKE_SYSTEM_NAME STREQUAL "Emscripten")
8
- target_link_options(test PRIVATE -sALLOW_MEMORY_GROWTH=1)
+ set(CMAKE_EXECUTABLE_SUFFIX ".html")
9
+ target_link_options(test PRIVATE -sALLOW_MEMORY_GROWTH=1 -sSINGLE_FILE)
10
endif()
11
12
# Enable Warnings
0 commit comments