From: Kefu Chai Date: Fri, 22 Feb 2019 05:37:43 +0000 (+0800) Subject: cmake: fix syntax error of set() X-Git-Tag: v14.1.0~12^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=8a6658f8a95fe3720b66164658e9e441e2c5e0dc;p=ceph-ci.git cmake: fix syntax error of set() Signed-off-by: Kefu Chai --- diff --git a/CMakeLists.txt b/CMakeLists.txt index ff12c8644c1..987763a4a80 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -576,7 +576,7 @@ option(ENABLE_COVERAGE "Coverage is enabled" OFF) option(PG_DEBUG_REFS "PG Ref debugging is enabled" OFF) option(WITH_TESTS "enable the build of ceph-test package scripts/binaries" ON) -set("UNIT_TESTS_BUILT", ${WITH_TESTS}) +set(UNIT_TESTS_BUILT ${WITH_TESTS}) set(CEPH_TEST_TIMEOUT 3600 CACHE STRING "Maximum time before a CTest gets killed" )