diff --git a/CMakeLists.txt b/CMakeLists.txt index d5b47506..8ec86e4e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,6 @@ else() endif() option(DILIGENT_BUILD_SAMPLE_BASE_ONLY "Build only SampleBase project" OFF) -option(DILIGENT_EMSCRIPTEN_STRIP_DEBUG_INFO "Strip debug information from Emscripten build" OFF) option(DILIGENT_EMSCRIPTEN_INCLUDE_COI_SERVICE_WORKER "Include cross-origin isolation service worker in each emscripten build" OFF) function(add_sample_app APP_NAME IDE_FOLDER SOURCE INCLUDE SHADERS ASSETS) diff --git a/SampleBase/CMakeLists.txt b/SampleBase/CMakeLists.txt index 601e1c1e..f3b1d93c 100644 --- a/SampleBase/CMakeLists.txt +++ b/SampleBase/CMakeLists.txt @@ -149,11 +149,6 @@ elseif(PLATFORM_EMSCRIPTEN) ${CMAKE_CURRENT_BINARY_DIR}/${TARGET_NAME}.html @ONLY ) - - target_link_options(${TARGET_NAME} PRIVATE "SHELL: -s WASM_BIGINT -s WASM=1") - if(${CMAKE_BUILD_TYPE} STREQUAL "Debug" AND DILIGENT_EMSCRIPTEN_STRIP_DEBUG_INFO) - target_link_options(${TARGET_NAME} PRIVATE "SHELL: -gseparate-dwarf -g0") - endif() endfunction() else()