diff --git a/contrib/CMakeLists.txt b/contrib/CMakeLists.txt --- a/contrib/CMakeLists.txt +++ b/contrib/CMakeLists.txt @@ -1,5 +1,5 @@ -option(BUILD_SOURCE_CONTROL_TOOLS "Build the source control tools" OFF) -if(BUILD_SOURCE_CONTROL_TOOLS) +option(ENABLE_SOURCE_CONTROL_TOOLS_TESTS "Enable testing of the source control tools" OFF) +if(ENABLE_SOURCE_CONTROL_TOOLS_TESTS) add_subdirectory(source-control-tools) endif() diff --git a/contrib/teamcity/build-configurations.yml b/contrib/teamcity/build-configurations.yml --- a/contrib/teamcity/build-configurations.yml +++ b/contrib/teamcity/build-configurations.yml @@ -281,7 +281,7 @@ check-source-control-tools: cmake_flags: - - '-DBUILD_SOURCE_CONTROL_TOOLS=ON' + - '-DENABLE_SOURCE_CONTROL_TOOLS_TESTS=ON' targets: - - check-source-control-tools timeout: 600