diff options
| author | Ryan Roden-Corrent <[email protected]> | 2021-08-07 17:30:48 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-07 23:30:48 +0200 |
| commit | e6fe8169c27825580e9b0e73ae633e89dc83b786 (patch) | |
| tree | 875355ab6405ab9a77dad5728aa1c9876f0a8907 /.gitignore | |
| parent | 7ca9131fd46e6928910cd995f4dc4240f36e2560 (diff) | |
| download | raylib-e6fe8169c27825580e9b0e73ae633e89dc83b786.tar.gz raylib-e6fe8169c27825580e9b0e73ae633e89dc83b786.zip | |
Fix Makefile to build WASM examples. (#1906)
* Fix Makefile to build WASM examples.
- Add --preload-file flag before specifying the resource dir
- Add empty resource dir to `shapes/` (otherwise wasm-ld will fail)
- Add wasm outputs to .gitigore
* Delete .gitignore
Co-authored-by: Ray <[email protected]>
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -58,6 +58,12 @@ packages/ *.bc *.so +# Ignore wasm data in examples/ +examples/**/*.wasm +examples/**/*.data +examples/**/*.js +examples/**/*.html + # Ignore files build by xcode *.mode*v* *.pbxuser |
