Tweak gitignore;

- Machine-specific excludes do not belong in lovr's gitignore.
  They should be configured using .git/info/exclude or globally.
- Preferential excludes should use .git/info/exclude (e.g.
  plugins, in-tree lua files).
- This restricts gitignore to build-system-generated artifacts.
  Honestly I'd like to remove these too, but need to monitor.
This commit is contained in:
bjorn 2021-07-18 23:58:25 -07:00
parent 0b51bdc5a4
commit cca24fe581
2 changed files with 1 additions and 9 deletions

8
.gitignore vendored
View File

@ -1,13 +1,5 @@
.DS_Store
.vs
.tup
.obj
bin
build*
plugins
*.*.h
*.lua
*.config
Activity*.java
AndroidManifest*.xml
deps/OpenXR-Oculus

View File

@ -452,7 +452,7 @@ if target == 'android' then
config.headsets.pico and 'src/resources/Activity_pico.java' or
config.headsets.openxr and 'src/resources/Activity_openxr.java'
java = 'src/resources/Activity.java'
java = 'bin/Activity.java'
class = 'org/lovr/app/Activity.class'
binclass = 'bin/' .. class
jar = 'bin/lovr.jar'