Hi . I simply want to run C/C++ code and GUI using GTK+ with emscripten
I have done some workaround which is defined below
I am able to compile C/C++ code with GTK+ using MinGW compiler . I used below command for this
C:\gtkmm\bin>g++ helloworld.cpp -o hello.exe `pkg-config --cflags --libs gtk+-2.0`
And I am simply able to run simple C++ script without GUI using emscripten
C:\Program Files\Emscripten\emscripten\1.35.0> em++ helloworld.cpp -o helloworld.html
I am a newbie to emscripten and i have done some research on it but unfortunately i am unable to sort it out .
For some reason if this is impossible or currently not achievable due to compatibility issues , then what are the alternatives to run C++ code with GUI on browser
Or what GUI libraries for C++ should be recpmmendable for this
Thanx in advance