From e1b9047b55199f3f5b8569029c5830104ddfae09 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 3 Apr 2021 08:44:22 +0100 Subject: [PATCH] emscripten.cmake: remove a rogue diagnostic. I somehow left this in while I was trying to get the Emscripten cmake build to work in the first place. --- cmake/platforms/emscripten.cmake | 1 - 1 file changed, 1 deletion(-) diff --git a/cmake/platforms/emscripten.cmake b/cmake/platforms/emscripten.cmake index d6b5cd2..d923083 100644 --- a/cmake/platforms/emscripten.cmake +++ b/cmake/platforms/emscripten.cmake @@ -30,7 +30,6 @@ list(TRANSFORM emcc_export_list PREPEND \") list(TRANSFORM emcc_export_list APPEND \") string(JOIN "," emcc_export_string ${emcc_export_list}) set(CMAKE_C_LINK_FLAGS "-s ASM_JS=1 -s EXPORTED_FUNCTIONS='[${emcc_export_string}]'") -message("link=${CMAKE_C_LINK_EXECUTABLE}") set(build_cli_programs FALSE)