]> granicus.if.org Git - check/commitdiff
Adding "rules" to .gitignore related to CMake
authorNicola Spanti (RyDroid) <dev@nicola-spanti.info>
Sat, 4 Mar 2017 12:01:36 +0000 (13:01 +0100)
committerNicola Spanti (RyDroid) <dev@nicola-spanti.info>
Sat, 4 Mar 2017 12:01:36 +0000 (13:01 +0100)
.gitignore
CMakeLists.txt

index 2df92c0bb0c9d7e77825463217b5dc009af3993f..5322588ac9670964e0bb93367350840f029ec3cb 100644 (file)
@@ -9,6 +9,8 @@
 *.save
 *.autosav
 *.autosave
+*.swp
+*.swap
 
 # Generated binaries
 *.o
@@ -23,6 +25,29 @@ build/
 release/
 debug/
 
+# CMake
+CMakeCache.txt
+CMakeFiles/
+CTestTestfile.cmake
+DartConfiguration.tcl
+Testing/
+check_error_linenums_seRbql
+check_test_names__e1JTIe
+cmake_install.cmake
+lib/CMakeFiles/
+lib/cmake_install.cmake
+lib/libcompat.a
+src/CMakeFiles/
+src/cmake_install.cmake
+src/libcheck.a
+tests/CMakeFiles/
+tests/CTestTestfile.cmake
+tests/check_check
+tests/check_check_export
+tests/check_nofork
+tests/check_nofork_teardown
+tests/cmake_install.cmake
+
 build-aux
 Makefile.in
 Makefile
index d952391e234b4352b279fcca5cfc71ca66ccb353..90c5323997886bbcc5ac622fc8330ef1a189ffe3 100644 (file)
@@ -45,7 +45,7 @@ set(CMAKE_BUILD_TYPE Debug)
 
 ###############################################################################
 # Option
-option(CHECK_ENABLE_TESTS 
+option(CHECK_ENABLE_TESTS
   "Enable the compilation and running of Check's unit tests" ON)
 
 ###############################################################################