diff options
author | Nao Pross <naopross@thearcway.org> | 2017-12-18 00:00:21 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2017-12-18 00:00:21 +0100 |
commit | 2e27a93e3ed189b4d96ec7df6e05b102dd2e841a (patch) | |
tree | 6952edd5db3b4075532c4ce75bda764d5a67051b /.gitignore | |
parent | Update .gitignore and minor changes (mostly formatting) (diff) | |
download | OrbitingYeti-2e27a93e3ed189b4d96ec7df6e05b102dd2e841a.tar.gz OrbitingYeti-2e27a93e3ed189b4d96ec7df6e05b102dd2e841a.zip |
Replace tabs with spaces, set up CMake build system
Other changes:
- update gitignore
- build scripts under `etc`
- fix window
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 |