From: Nicola Spanti (RyDroid) Date: Sat, 4 Mar 2017 12:01:36 +0000 (+0100) Subject: Adding "rules" to .gitignore related to CMake X-Git-Tag: 0.12.0~9^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8a74809333f6024fca52cfda0697514f6ceb2c0;p=check Adding "rules" to .gitignore related to CMake --- 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) ###############################################################################