2013-11-18 23:38:44 +01:00
|
|
|
# Ignore generated files
|
|
|
|
# ...
|
|
|
|
|
2016-07-16 17:39:15 +02:00
|
|
|
# Ignore VIM's backup generated files
|
|
|
|
*.swp
|
2017-03-20 13:33:53 -05:00
|
|
|
*.swo
|
|
|
|
*~
|
2016-07-16 17:39:15 +02:00
|
|
|
|
2013-11-18 23:38:44 +01:00
|
|
|
# Ignore thumbnails created by windows
|
|
|
|
Thumbs.db
|
2013-10-24 17:49:49 +02:00
|
|
|
|
2013-11-18 23:38:44 +01:00
|
|
|
# Ignore files build by Visual Studio
|
2013-11-24 20:30:34 +01:00
|
|
|
# *.obj --> Can be confused with 3d model!
|
2013-10-24 17:49:49 +02:00
|
|
|
*.pdb
|
2013-11-18 23:38:44 +01:00
|
|
|
*.aps
|
2018-05-14 00:33:15 +02:00
|
|
|
*.user
|
|
|
|
# *.vcproj
|
|
|
|
# *.vcxproj*
|
|
|
|
# *.sln
|
2013-11-18 23:38:44 +01:00
|
|
|
*.vspscc
|
|
|
|
*_i.c
|
|
|
|
*.i
|
|
|
|
*.icf
|
|
|
|
*_p.c
|
|
|
|
*.ncb
|
|
|
|
*.suo
|
2013-10-24 17:49:49 +02:00
|
|
|
*.tlb
|
|
|
|
*.tlh
|
2013-11-18 23:38:44 +01:00
|
|
|
*.bak
|
|
|
|
*.cache
|
|
|
|
*.ilk
|
2013-10-24 17:49:49 +02:00
|
|
|
*.log
|
2013-11-18 23:38:44 +01:00
|
|
|
[Bb]in
|
|
|
|
[Dd]ebug/
|
|
|
|
[Dd]ebug.win32/
|
2018-10-15 15:19:58 +01:00
|
|
|
[Dd]ebug.DLL/
|
2013-11-18 23:38:44 +01:00
|
|
|
*.sbr
|
2013-10-24 17:49:49 +02:00
|
|
|
*.sdf
|
2013-11-18 23:38:44 +01:00
|
|
|
obj/
|
2017-10-11 11:22:49 +02:00
|
|
|
[R]elease/
|
2013-11-18 23:38:44 +01:00
|
|
|
[Rr]elease.win32/
|
2013-10-24 17:49:49 +02:00
|
|
|
_ReSharper*/
|
2013-11-18 23:38:44 +01:00
|
|
|
[Tt]est[Rr]esult*
|
|
|
|
ipch/
|
|
|
|
*.opensdf
|
2018-05-14 00:33:15 +02: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 19:33:51 +01:00
|
|
|
packages/
|
2015-01-18 10:56:37 +01:00
|
|
|
|
|
|
|
# Ignore compiled binaries
|
|
|
|
*.o
|
2014-09-18 18:56:22 +02:00
|
|
|
*.exe
|
2019-02-18 23:36:29 -05:00
|
|
|
*.a
|
2018-07-21 16:18:33 +02:00
|
|
|
!raylib.rc.o
|
2013-10-24 17:49:49 +02:00
|
|
|
|
2016-12-21 00:04:44 +01:00
|
|
|
# Ignore all examples files
|
|
|
|
examples/*
|
|
|
|
# Unignore all examples dirs
|
|
|
|
!examples/*/
|
|
|
|
# Unignore all examples files with extension
|
|
|
|
!examples/*.c
|
|
|
|
!examples/*.lua
|
|
|
|
!examples/*.png
|
|
|
|
# Unignore examples Makefile
|
|
|
|
!examples/Makefile
|
2018-07-10 11:52:30 +02:00
|
|
|
!examples/Makefile.Android
|
2019-01-21 23:59:35 +01:00
|
|
|
!examples/raylib_compile_execute.bat
|
|
|
|
!examples/raylib_makefile_example.bat
|
2016-12-21 00:04:44 +01:00
|
|
|
|
2017-03-20 13:33:53 -05:00
|
|
|
# Ignore all games files
|
|
|
|
games/*
|
|
|
|
# Unignore all games dirs
|
|
|
|
!games/*/
|
|
|
|
# Unignore all games files with extension
|
|
|
|
!games/*.c
|
|
|
|
!games/*.lua
|
|
|
|
!games/*.png
|
|
|
|
# Unignore games makefile
|
2017-05-18 19:24:24 +02:00
|
|
|
!games/Makefile
|
2018-07-21 17:38:47 +02:00
|
|
|
!games/Makefile.Android
|
2017-03-20 13:33:53 -05:00
|
|
|
|
2013-11-18 23:38:44 +01:00
|
|
|
# Ignore files build by xcode
|
|
|
|
*.mode*v*
|
|
|
|
*.pbxuser
|
|
|
|
*.xcbkptlist
|
|
|
|
*.xcscheme
|
|
|
|
*.xcworkspacedata
|
|
|
|
*.xcuserstate
|
|
|
|
*.xccheckout
|
|
|
|
xcschememanagement.plist
|
2013-10-24 17:49:49 +02:00
|
|
|
.DS_Store
|
2013-11-18 23:38:44 +01:00
|
|
|
._.*
|
|
|
|
xcuserdata/
|
2016-01-07 17:12:54 +01:00
|
|
|
DerivedData/
|
2016-04-23 11:29:19 +02:00
|
|
|
|
2016-08-08 17:22:26 +02:00
|
|
|
# Visual Studio project
|
2018-05-14 00:33:15 +02:00
|
|
|
project/VS2015.UWP/packages
|
|
|
|
project/VS2017/packages
|
2016-08-08 17:22:26 +02:00
|
|
|
|
2018-05-10 21:03:43 +02:00
|
|
|
# Web examples
|
2017-04-08 11:19:11 +02:00
|
|
|
docs/examples/web/*.html
|
2017-04-10 15:30:36 +02:00
|
|
|
docs/examples/web/*/*.html
|
2017-04-08 11:19:11 +02:00
|
|
|
!docs/examples/web/loader.html
|
2017-04-20 00:49:39 +02:00
|
|
|
!docs/examples/web/core/loader.html
|
|
|
|
!docs/examples/web/shapes/loader.html
|
|
|
|
!docs/examples/web/text/loader.html
|
|
|
|
!docs/examples/web/textures/loader.html
|
|
|
|
!docs/examples/web/audio/loader.html
|
|
|
|
!docs/examples/web/physac/loader.html
|
|
|
|
!docs/examples/web/shaders/loader.html
|
|
|
|
!docs/examples/web/models/loader.html
|
|
|
|
|
2017-07-22 19:45:36 -04:00
|
|
|
# CMake stuff
|
|
|
|
CMakeCache.txt
|
|
|
|
CMakeFiles
|
|
|
|
CMakeScripts
|
|
|
|
Testing
|
2018-05-10 21:03:43 +02:00
|
|
|
TestingIfSymlinkWorks
|
2017-07-22 19:45:36 -04:00
|
|
|
cmake_install.cmake
|
|
|
|
install_manifest.txt
|
|
|
|
compile_commands.json
|
|
|
|
CTestTestfile.cmake
|
|
|
|
build
|
2017-09-23 00:25:31 +02:00
|
|
|
!templates/android_project/Makefile
|
2017-07-22 19:45:36 -04:00
|
|
|
|
|
|
|
# Unignore These makefiles...
|
|
|
|
!examples/CMakeLists.txt
|
|
|
|
!games/CMakeLists.txt
|
|
|
|
|
2017-10-11 11:22:49 +02:00
|
|
|
# Ignore Android generated files and folders
|
|
|
|
templates/android_project/output
|
2017-11-25 20:27:53 +01:00
|
|
|
|
|
|
|
# Ignore GNU global tags
|
|
|
|
GPATH
|
|
|
|
GRTAGS
|
|
|
|
GTAGS
|
2019-04-22 19:03:00 +01:00
|
|
|
.vs
|