wasm: build: Use .wasm extension for shared module

This makes sure the shared modules are built with .wasm extension
instead of .so.

However libvlc and libvlccore are still built with .so extension.
This commit is contained in:
Khalid Masum 2023-09-22 00:06:17 +06:00 committed by Steve Lhomme
parent cc39c96ef8
commit a7ede0f075
1 changed files with 3 additions and 0 deletions

View File

@ -89,6 +89,9 @@ AC_DEFUN([VLC_LIBRARY_SUFFIX], [
hpux*)
LIBEXT=".sl"
;;
emscripten*)
LIBEXT=".wasm"
;;
*)
LIBEXT=".so"
;;