.gitignore (453B)
1 # osx annoyances 2 .DS_Store 3 4 # binaries folder 5 /bin/ 6 /build/ 7 /build-*/ 8 9 # dependency build temp files 10 deps-build/ 11 /deps/ 12 13 # vs stuff 14 .vs 15 ipch 16 ipch/* 17 *.opensdf 18 *.sdf 19 *.suo 20 *.vcxproj.user 21 *.VC.opendb 22 *.VC.db 23 /.vscode/ 24 25 # cmake stuff 26 CMakeCache.txt 27 CMakeFiles 28 Makefile 29 cmake_install.cmake 30 install_manifest.txt 31 32 # unix intermediate files 33 config.h 34 *.o 35 *.a 36 *.so 37 *.dylib 38 39 # qt creator 40 CMakeLists.txt.user 41 42 # python bytecode 43 __pycache__ 44 45 # other repos 46 /android 47