You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

137 lines
2.1 KiB

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
5 years ago
7 years ago
  1. # Ignore generated files
  2. # ...
  3. # Ignore VIM's backup generated files
  4. *.swp
  5. *.swo
  6. *~
  7. # Ignore thumbnails created by windows
  8. Thumbs.db
  9. # Ignore files build by Visual Studio
  10. # *.obj --> Can be confused with 3d model!
  11. *.pdb
  12. *.aps
  13. *.user
  14. # *.vcproj
  15. # *.vcxproj*
  16. # *.sln
  17. *.vspscc
  18. *_i.c
  19. *.i
  20. *.icf
  21. *_p.c
  22. *.ncb
  23. *.suo
  24. *.tlb
  25. *.tlh
  26. *.bak
  27. *.cache
  28. *.ilk
  29. *.log
  30. [Bb]in
  31. [Dd]ebug/
  32. [Dd]ebug.win32/
  33. [Dd]ebug.DLL/
  34. *.sbr
  35. *.sdf
  36. obj/
  37. [R]elease/
  38. [Rr]elease.win32/
  39. _ReSharper*/
  40. [Tt]est[Rr]esult*
  41. ipch/
  42. *.opensdf
  43. *.db
  44. *.opendb
  45. packages/
  46. # Ignore compiled binaries
  47. *.o
  48. *.exe
  49. *.a
  50. !raylib.rc.o
  51. # Ignore all examples files
  52. examples/*
  53. # Unignore all examples dirs
  54. !examples/*/
  55. # Unignore all examples files with extension
  56. !examples/*.c
  57. !examples/*.lua
  58. !examples/*.png
  59. # Unignore examples Makefile
  60. !examples/Makefile
  61. !examples/Makefile.Android
  62. !examples/raylib_compile_execute.bat
  63. !examples/raylib_makefile_example.bat
  64. # Ignore all games files
  65. games/*
  66. # Unignore all games dirs
  67. !games/*/
  68. # Unignore all games files with extension
  69. !games/*.c
  70. !games/*.lua
  71. !games/*.png
  72. # Unignore games makefile
  73. !games/Makefile
  74. !games/Makefile.Android
  75. # Ignore files build by xcode
  76. *.mode*v*
  77. *.pbxuser
  78. *.xcbkptlist
  79. *.xcscheme
  80. *.xcworkspacedata
  81. *.xcuserstate
  82. *.xccheckout
  83. xcschememanagement.plist
  84. .DS_Store
  85. ._.*
  86. xcuserdata/
  87. DerivedData/
  88. # Visual Studio project
  89. project/VS2015.UWP/packages
  90. project/VS2017/packages
  91. # Web examples
  92. docs/examples/web/*.html
  93. docs/examples/web/*/*.html
  94. !docs/examples/web/loader.html
  95. !docs/examples/web/core/loader.html
  96. !docs/examples/web/shapes/loader.html
  97. !docs/examples/web/text/loader.html
  98. !docs/examples/web/textures/loader.html
  99. !docs/examples/web/audio/loader.html
  100. !docs/examples/web/physac/loader.html
  101. !docs/examples/web/shaders/loader.html
  102. !docs/examples/web/models/loader.html
  103. # CMake stuff
  104. CMakeCache.txt
  105. CMakeFiles
  106. CMakeScripts
  107. Testing
  108. TestingIfSymlinkWorks
  109. cmake_install.cmake
  110. install_manifest.txt
  111. compile_commands.json
  112. CTestTestfile.cmake
  113. build
  114. !templates/android_project/Makefile
  115. # Unignore These makefiles...
  116. !examples/CMakeLists.txt
  117. !games/CMakeLists.txt
  118. # Ignore Android generated files and folders
  119. templates/android_project/output
  120. # Ignore GNU global tags
  121. GPATH
  122. GRTAGS
  123. GTAGS
  124. .vs