diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 43 |
1 files changed, 39 insertions, 4 deletions
@@ -1,9 +1,44 @@ +####################################################################### +# EDITORS / IDEs +####################################################################### +# vim +**/*.swp + +# Eclipse Debug Release +.cproject +.project +.settings + +# VS +**.sln +**.vcxproj +**.filters +**.vs/ +**.vcxproj.user + +# sublime text +*.sublime-workspace +*.sublime-project -# editors +####################################################################### +# BUILD SYSTEM +####################################################################### +# binary +OrbitingYeti +OrbitingYeti.exe -**/*.sublime-workspace -**/*.sublime-project +build -**/*.swp
\ No newline at end of file +# cmake +**/makefile +**/Makefile +**/CMakeFiles +**/CmakeScripts +**/CMakeCache.txt +**/Testing +**/install_manifest.txt +**/cmake_install.cmake +**/compile_commands.json +**/CTestTestfile.cmake |