feat: add link flags to build the benchmark for wasm

This commit is contained in:
Nick Angelou 2021-03-22 21:54:56 -05:00
Родитель 8d1849839e
Коммит 81b2b3e49d
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -42,6 +42,10 @@ if(SEAL_BUILD_BENCH)
endif()
add_executable(sealbench)
# If we're targeting WASM, add the appropriate link flags
if(EMSCRIPTEN)
set_target_properties(sealbench PROPERTIES LINK_FLAGS "-flto -O3 -s WASM=1 -s ALLOW_MEMORY_GROWTH=1 -s MAXIMUM_MEMORY=4GB")
endif()
target_sources(sealbench
PRIVATE
${CMAKE_CURRENT_LIST_DIR}/bench.cpp