diff options
author | Mizux <corentinl@google.com> | 2020-07-09 18:42:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-09 12:42:55 -0400 |
commit | 4b5b25a28502a6eea4e89e2248a23e11ec8176a9 (patch) | |
tree | 4609cd20a11c4393412fafb8c56d1889751eaf36 /CMakeLists.txt | |
parent | 63f2c695ed1b35dfe609c630d9210049eb611b8e (diff) |
cmake: remove unneeded enable_testing() cmd (#736)
It is already performed by CTest module
ref: https://github.com/Kitware/CMake/blob/43372d5ba34d2a95a886f39a254870c122e98fa2/Modules/CTest.cmake#L83-L84
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4d10710e..95880c20 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -98,7 +98,6 @@ if(${ABSL_RUN_TESTS}) # enable CTest. This will set BUILD_TESTING to ON unless otherwise specified # on the command line include(CTest) - enable_testing() ## check targets if (NOT ABSL_USE_EXTERNAL_GOOGLETEST) |