From f8a74809333f6024fca52cfda0697514f6ceb2c0 Mon Sep 17 00:00:00 2001 From: "Nicola Spanti (RyDroid)" Date: Sat, 4 Mar 2017 13:01:36 +0100 Subject: [PATCH] Adding "rules" to .gitignore related to CMake --- .gitignore | 25 +++++++++++++++++++++++++ CMakeLists.txt | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2df92c0..5322588 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/CMakeLists.txt b/CMakeLists.txt index d952391..90c5323 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) ############################################################################### -- 2.50.1