Extend .gitignore
Organize .gitignore to make it easier to add to Ignore only binaries, not directories Removed some invalid ignores (.cfg, .desktop, etc) Better globbingactorid
parent
ba4b8a37e2
commit
04735a6734
@ -1,24 +1,53 @@
|
|||||||
build
|
## make
|
||||||
*~
|
|
||||||
Doxygen
|
|
||||||
prebuilt
|
|
||||||
apps/openmw/config.hpp
|
|
||||||
Docs/mainpage.hpp
|
|
||||||
CMakeFiles
|
CMakeFiles
|
||||||
*/CMakeFiles
|
*/CMakeFiles
|
||||||
CMakeCache.txt
|
CMakeCache.txt
|
||||||
moc_*.cxx
|
|
||||||
cmake_install.cmake
|
cmake_install.cmake
|
||||||
*.[ao]
|
CMakeLists.txt.user
|
||||||
Makefile
|
Makefile
|
||||||
makefile
|
makefile
|
||||||
data
|
build
|
||||||
|
prebuilt
|
||||||
|
|
||||||
|
## doxygen
|
||||||
|
Doxygen
|
||||||
|
|
||||||
|
## ides/editors
|
||||||
|
*~
|
||||||
*.kdev4
|
*.kdev4
|
||||||
CMakeLists.txt.user
|
|
||||||
*.swp
|
*.swp
|
||||||
*.swo
|
*.swo
|
||||||
*.kate-swp
|
*.kate-swp
|
||||||
.cproject
|
.cproject
|
||||||
.project
|
.project
|
||||||
.settings/
|
.settings
|
||||||
.directory
|
.directory
|
||||||
|
|
||||||
|
## resources
|
||||||
|
data
|
||||||
|
resources
|
||||||
|
/*.cfg
|
||||||
|
/*.desktop
|
||||||
|
/*.install
|
||||||
|
|
||||||
|
## binaries
|
||||||
|
/esmtool
|
||||||
|
/mwiniimport
|
||||||
|
/omwlauncher
|
||||||
|
/openmw
|
||||||
|
/opencs
|
||||||
|
|
||||||
|
## generated objects
|
||||||
|
apps/openmw/config.hpp
|
||||||
|
Docs/mainpage.hpp
|
||||||
|
moc_*.cxx
|
||||||
|
*.cxx_parameters
|
||||||
|
*qrc_launcher.cxx
|
||||||
|
*qrc_resources.cxx
|
||||||
|
*__*
|
||||||
|
*ui_datafilespage.h
|
||||||
|
*ui_graphicspage.h
|
||||||
|
*ui_mainwindow.h
|
||||||
|
*ui_playpage.h
|
||||||
|
*.[ao]
|
||||||
|
*.so
|
||||||
|
Loading…
Reference in New Issue