raylib/.gitignore

105 lines
1.3 KiB
Plaintext
Raw Normal View History

# Ignore generated files
# ...
# Ignore VIM's backup generated files
*.swp
*.swo
*~
# Ignore thumbnails created by windows
Thumbs.db
2013-10-24 19:49:49 +04:00
# Ignore files build by Visual Studio
2013-11-24 23:30:34 +04:00
# *.obj --> Can be confused with 3d model!
2013-10-24 19:49:49 +04:00
*.pdb
*.aps
2018-05-14 01:33:15 +03:00
*.user
# *.vcproj
# *.vcxproj*
# *.sln
*.vspscc
*_i.c
*.i
*.icf
*_p.c
*.ncb
*.suo
2013-10-24 19:49:49 +04:00
*.tlb
*.tlh
*.bak
*.cache
*.ilk
2013-10-24 19:49:49 +04:00
*.log
2020-03-12 15:02:18 +03:00
.vs
[Bb]in
[Dd]ebug/
*.sbr
2013-10-24 19:49:49 +04:00
*.sdf
obj/
2017-10-11 12:22:49 +03:00
[R]elease/
2013-10-24 19:49:49 +04:00
_ReSharper*/
[Tt]est[Rr]esult*
ipch/
*.opensdf
2018-05-14 01:33:15 +03:00
*.db
*.opendb
UWP Support Overhaul (#819) * Working build * Fix build again, stop deleting files * Hotfix crash, needs investigating * Remove VS2015.UWP, I cannot update the project * Lots of UWP work, added keyboard and mouse press support. Still need to finish scroll wheel, mouse position and cursor hiding, plus other stuff that I haven't seen yet. * Implemented a ton more things, added BaseApp.h to provide common code to UWP apps. * Remove constant window dimensions * Enable and Disable cursor support. * Actually use mouse delta * Gamepad Support * Cleaning and small tweaks * Restore original example. * Update comment * Use 'Messages' to handle the cursor functions so code is more portable. * Comment * Comment unused message fields and use vector for mouse pos instead. * Move messages to utils.h and use messages for everything. No more plat-specific code in raylib.h * Working build * Fix build again, stop deleting files * Hotfix crash, needs investigating * Remove VS2015.UWP, I cannot update the project * Lots of UWP work, added keyboard and mouse press support. Still need to finish scroll wheel, mouse position and cursor hiding, plus other stuff that I haven't seen yet. * Implemented a ton more things, added BaseApp.h to provide common code to UWP apps. * Remove constant window dimensions * Enable and Disable cursor support. * Actually use mouse delta * Gamepad Support * Cleaning and small tweaks * Restore original example. * Update comment * Use 'Messages' to handle the cursor functions so code is more portable. * Comment * Comment unused message fields and use vector for mouse pos instead. * Move messages to utils.h and use messages for everything. No more plat-specific code in raylib.h * Tested some desktop stuff and added projection matrix updates for window resizing. * Fixed big bad mouse bug * Fix alt buttons and add hack to combat flickery key presses (far from perfect) * Remove debug code * Final commit * Well, so I thought * Wow, i am bad * Remove packages folder * Remove useless include * Apply requested changes and fix linux build * Try to stop packages folder * Have we fixed the formatting properly? * Third time's the charm? * Where did this come from? * Re-fix * Autoformat is gonna kill * Fixed XBOX ONE Support * Fix tabs
2019-04-27 21:33:51 +03:00
packages/
# Ignore compiled binaries
*.o
2014-09-18 20:56:22 +04:00
*.exe
2019-02-19 07:36:29 +03:00
*.a
2019-05-21 19:02:20 +03:00
*.bc
*.so
2013-10-24 19:49:49 +04:00
# Ignore all examples files
examples/*
# Unignore all examples dirs
!examples/*/
# Unignore all examples files with extension
!examples/*.c
!examples/*.png
# Unignore examples Makefile
!examples/Makefile
2018-07-10 12:52:30 +03:00
!examples/Makefile.Android
!examples/raylib_compile_execute.bat
!examples/raylib_makefile_example.bat
# Ignore files build by xcode
*.mode*v*
*.pbxuser
*.xcbkptlist
*.xcscheme
*.xcworkspacedata
*.xcuserstate
*.xccheckout
xcschememanagement.plist
2013-10-24 19:49:49 +04:00
.DS_Store
._.*
xcuserdata/
2016-01-07 19:12:54 +03:00
DerivedData/
# Jetbrains project
.idea/
cmake-build-debug/
# CMake stuff
CMakeCache.txt
CMakeFiles
CMakeScripts
Testing
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake
build
# Unignore These makefiles...
!examples/CMakeLists.txt
# Ignore GNU global tags
GPATH
GRTAGS
GTAGS