From 2e27a93e3ed189b4d96ec7df6e05b102dd2e841a Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Mon, 18 Dec 2017 00:00:21 +0100 Subject: Replace tabs with spaces, set up CMake build system Other changes: - update gitignore - build scripts under `etc` - fix window --- .gitignore | 43 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 39 insertions(+), 4 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 7ef3fb8..35b1435 100644 --- a/.gitignore +++ b/.gitignore @@ -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 -- cgit v1.2.1