From: Jakub Zakrzewski Date: Fri, 27 Nov 2020 20:06:03 +0000 (+0100) Subject: cmake: don't use reserved target name 'test' X-Git-Tag: curl-7_74_0~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cfea4f2f4dc316c38694440ef2eed899a3e7d207;p=thirdparty%2Fcurl.git cmake: don't use reserved target name 'test' CMake up to 3.10 always reserves this name Fixes #6257 Closes #6258 --- diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index c028583804..acd53d3e79 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -41,7 +41,6 @@ function(add_runtests targetname test_flags) ) endfunction() -add_runtests(test "") add_runtests(test-quiet "-a -s") add_runtests(test-am "-a -am") add_runtests(test-full "-a -p -r")