Top "Emscripten" questions

Emscripten is an LLVM-to-JavaScript compiler.

Using emscripten with CMake in a simple(?) project

So I've got a fairly simple C++ program that uses CGAL and is built with CMake. I can build and …

c++ cmake cgal emscripten
Passing JS function to Emscripten-generated code

I have a piece of C++ code converted to JavaScript via Emscripten. I would like the converted C++ code to …

javascript emscripten
Emscripten - C++ with pure html5 canvas support (not WebGL)

Is there any way of accessing canvas 2D context under C++ when using emscripten? I'd like to be able to …

javascript c++ canvas emscripten
Using libraries with emscripten

I have just started using Emscripten and would like to start using GLFW and other libraries. I am completely lost …

c++ glfw emscripten
Interaction with C++ classes in Emscripten

The Emscripten tutorial give a good explanation of how to interact with C functions: https://github.com/kripken/emscripten/wiki/…

emscripten
CMake project for Emscripten

I want to make CMake and Emscripten friends. Didn't find more or less informative documentation on the Emscripten project website, …

c++ cmake emscripten
Can I somehow build webassembly code *without* the emscripten "glue"?

Can I somehow create a wasm file, that will work on its own as described in MDN here (by instatiating …

javascript emscripten webassembly