mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-05 19:08:13 +00:00

* debug print the working directory * trigger it on any branch (temporarily) * nope, wrong fix * dummy commit to trigger the workflow * lets see if this works * trigger the workflow when updating it * nice typo * add missing dollar signs * debug list the contents of the repository * dir/s instead of ls * remove this, no longer needed * backslashes maybe? windows... * this should be a forward slash * remove no longer needed spam * debug check if examples dir exists * LOG is disabled apparently * ... * temporarily disable this step to save time * ubuntu maybe * bash * install deps * link libc * link libm * now to test the rest * emsdk is back * add missing shaders * Update examples collection * add indentation * remove emsdk cache * ignore emsdk cache * Update examples collection * fix errors with the find command * remove emsdk cache now * i forgot to actually add it to gitignore * fix error with git not finding anything to commit * global config instead of repo specific * clone raylib.com repo under the same owner as the raylib repo owner * add proper access token * reorganize it all * remove non-existent example * clone raylib.com before running rexm * no extra slash * Update examples collection * copy updated examples to the right place * remove unnecessary debug line from rexm.c * Update examples collection * Update examples collection * use hardcoded absolute path to make * add debug line * semicolon * fix wrong handling of make path * fix wrong cwd * rebuild raylib for web after installing it * cleanuo * conditionally push to repos, never on PR * build rexm with make for consistency * remove workflow run results * add back the examples report files * pause automatic commits * revert makefile changes * readd removed vs2022 project file --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
122 lines
1.3 KiB
Plaintext
122 lines
1.3 KiB
Plaintext
# Ignore generated files
|
|
# ...
|
|
|
|
# Ignore VIM's backup generated files
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Ignore thumbnails created by windows
|
|
Thumbs.db
|
|
|
|
# Ignore files build by Visual Studio
|
|
# *.obj --> Can be confused with 3d model!
|
|
*.pdb
|
|
*.aps
|
|
*.user
|
|
# *.vcproj
|
|
# *.vcxproj*
|
|
# *.sln
|
|
*.vspscc
|
|
*_i.c
|
|
*.i
|
|
*.icf
|
|
*_p.c
|
|
*.ncb
|
|
*.suo
|
|
*.tlb
|
|
*.tlh
|
|
*.bak
|
|
*.cache
|
|
*.ilk
|
|
*.log
|
|
.vs
|
|
|
|
[Bb]in
|
|
[Dd]ebug/
|
|
*.sbr
|
|
*.sdf
|
|
obj/
|
|
[R]elease/
|
|
_ReSharper*/
|
|
[Tt]est[Rr]esult*
|
|
ipch/
|
|
*.opensdf
|
|
*.db
|
|
*.opendb
|
|
packages/
|
|
!examples/models/resources/models/obj/
|
|
|
|
# Ignore compiled binaries
|
|
*.o
|
|
*.exe
|
|
*.a
|
|
*.bc
|
|
*.so
|
|
*.so.*
|
|
*.dll
|
|
|
|
# Emscripten
|
|
emsdk
|
|
|
|
# Ignore wasm data in examples/
|
|
examples/**/*.wasm
|
|
examples/**/*.data
|
|
examples/**/*.js
|
|
examples/**/*.html
|
|
|
|
# Ignore files build by xcode
|
|
*.mode*v*
|
|
*.pbxuser
|
|
*.xcbkptlist
|
|
*.xcscheme
|
|
*.xcworkspacedata
|
|
*.xcuserstate
|
|
*.xccheckout
|
|
xcschememanagement.plist
|
|
.DS_Store
|
|
._.*
|
|
xcuserdata/
|
|
DerivedData/
|
|
|
|
# VSCode project
|
|
.vscode
|
|
|
|
# Jetbrains project
|
|
.idea/
|
|
cmake-build-*/
|
|
|
|
# CMake stuff
|
|
CMakeCache.txt
|
|
CMakeFiles
|
|
CMakeScripts
|
|
Testing
|
|
cmake_install.cmake
|
|
cmake_uninstall.cmake
|
|
install_manifest.txt
|
|
compile_commands.json
|
|
CTestTestfile.cmake
|
|
build
|
|
|
|
# Ignore GNU global tags
|
|
GPATH
|
|
GRTAGS
|
|
GTAGS
|
|
|
|
# Zig programming language
|
|
.zig-cache/
|
|
zig-cache/
|
|
zig-out/
|
|
build/
|
|
build-*/
|
|
docgen_tmp/
|
|
|
|
# Tools stuff
|
|
tools/parser/raylib_parser
|
|
tools/rexm/rexm.exe
|
|
tools/rexm/rexm
|
|
|
|
# CI
|
|
emsdk-cache/
|
|
raylib.com/
|