File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 27
27
source ./emsdk_env.sh
28
28
emcc -v
29
29
30
- - name : Compile with port
30
+ - name : Compiling with library_glfw.js
31
+ working-directory : ${{github.workspace}}/emscripten-glfw
32
+ run : |
33
+ source ${{github.workspace}}/emscripten/emsdk_env.sh
34
+ mkdir build-with-library_glfw
35
+ emcc --version
36
+ emcc -sUSE_GLFW=3 main.cpp -O2 -o build-with-library_glfw/index.html
37
+ ls -l build-with-library_glfw
38
+
39
+ - name : Compiling with contrib.glfw3
31
40
working-directory : ${{github.workspace}}/emscripten-glfw
32
41
run : |
33
42
source ${{github.workspace}}/emscripten/emsdk_env.sh
36
45
emcc --use-port=contrib.glfw3 examples/example_minimal/main.cpp -O2 -o build-with-port/index.html
37
46
ls -l build-with-port
38
47
39
- - name : Compile with port (small)
48
+ - name : Compiling with contrib.glfw3 (small)
40
49
working-directory : ${{github.workspace}}/emscripten-glfw
41
50
run : |
42
51
source ${{github.workspace}}/emscripten/emsdk_env.sh
You can’t perform that action at this time.
0 commit comments