.gitignore (652B)
1 *.a 2 *.so 3 *.so.?* 4 *.dll 5 *.exe 6 *.dylib 7 *.cmake 8 !/cmake/*.cmake 9 !/test/AssemblyTests.cmake 10 *~ 11 *.pyc 12 __pycache__ 13 14 # lcov 15 *.lcov 16 /lcov 17 18 # cmake files. 19 /Testing 20 CMakeCache.txt 21 CMakeFiles/ 22 cmake_install.cmake 23 24 # makefiles. 25 Makefile 26 27 # in-source build. 28 bin/ 29 lib/ 30 /test/*_test 31 32 # exuberant ctags. 33 tags 34 35 # YouCompleteMe configuration. 36 .ycm_extra_conf.pyc 37 38 # ninja generated files. 39 .ninja_deps 40 .ninja_log 41 build.ninja 42 install_manifest.txt 43 rules.ninja 44 45 # bazel output symlinks. 46 bazel-* 47 48 # out-of-source build top-level folders. 49 build/ 50 _build/ 51 build*/ 52 53 # in-source dependencies 54 /googletest/ 55 56 # Visual Studio 2015/2017 cache/options directory 57 .vs/ 58 CMakeSettings.json