From 918aa327fabb28ceba08b080e65e5bf9ea9b1442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Thu, 5 Dec 2019 16:24:57 +0100 Subject: [PATCH] Rename contrib/ to extras/ --- CMakeLists.txt | 12 ++++++------ {contrib => extras}/Catch.cmake | 0 {contrib => extras}/CatchAddTests.cmake | 0 {contrib => extras}/ParseAndAddCatchTests.cmake | 0 {contrib => extras}/gdbinit | 0 {contrib => extras}/lldbinit | 0 6 files changed, 6 insertions(+), 6 deletions(-) rename {contrib => extras}/Catch.cmake (100%) rename {contrib => extras}/CatchAddTests.cmake (100%) rename {contrib => extras}/ParseAndAddCatchTests.cmake (100%) rename {contrib => extras}/gdbinit (100%) rename {contrib => extras}/lldbinit (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index b13cd3b5..8ee4c768 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -39,7 +39,7 @@ add_subdirectory(tests) #option(CATCH_ENABLE_COVERAGE "Generate coverage for codecov.io" OFF) #option(CATCH_ENABLE_WERROR "Enable all warnings as errors" ON) #option(CATCH_INSTALL_DOCS "Install documentation alongside library" ON) -#option(CATCH_INSTALL_HELPERS "Install contrib alongside library" ON) +#option(CATCH_INSTALL_EXTRAS "Install extras alongside library" ON) # # #set_property(GLOBAL PROPERTY USE_FOLDERS ON) @@ -188,9 +188,9 @@ add_subdirectory(tests) # # Install CMake scripts # install( # FILES -# "contrib/ParseAndAddCatchTests.cmake" -# "contrib/Catch.cmake" -# "contrib/CatchAddTests.cmake" +# "extras/ParseAndAddCatchTests.cmake" +# "extras/Catch.cmake" +# "extras/CatchAddTests.cmake" # DESTINATION # ${CATCH_CMAKE_CONFIG_DESTINATION} # ) @@ -198,8 +198,8 @@ add_subdirectory(tests) # # Install debugger helpers # install( # FILES -# "contrib/gdbinit" -# "contrib/lldbinit" +# "extras/gdbinit" +# "extras/lldbinit" # DESTINATION # ${CMAKE_INSTALL_DATAROOTDIR}/Catch2 # ) diff --git a/contrib/Catch.cmake b/extras/Catch.cmake similarity index 100% rename from contrib/Catch.cmake rename to extras/Catch.cmake diff --git a/contrib/CatchAddTests.cmake b/extras/CatchAddTests.cmake similarity index 100% rename from contrib/CatchAddTests.cmake rename to extras/CatchAddTests.cmake diff --git a/contrib/ParseAndAddCatchTests.cmake b/extras/ParseAndAddCatchTests.cmake similarity index 100% rename from contrib/ParseAndAddCatchTests.cmake rename to extras/ParseAndAddCatchTests.cmake diff --git a/contrib/gdbinit b/extras/gdbinit similarity index 100% rename from contrib/gdbinit rename to extras/gdbinit diff --git a/contrib/lldbinit b/extras/lldbinit similarity index 100% rename from contrib/lldbinit rename to extras/lldbinit