Skip to content

Commit a29338a

Browse files
authored
Remove extraneous quotes that caused a cmake policy warning
1 parent 438a8e5 commit a29338a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmake/cc.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ if (${CMAKE_C_COMPILER_ID} STREQUAL "SUN")
9696
endif ()
9797
endif ()
9898

99-
if (${CORE} STREQUAL "SKYLAKEX")
99+
if (${CORE} STREQUAL SKYLAKEX)
100100
if (NOT DYNAMIC_ARCH)
101101
if (NOT NO_AVX512)
102102
set (CCOMMON_OPT "${CCOMMON_OPT} -march=skylake-avx512")
103103
endif ()
104104
endif ()
105105
endif ()
106106

107-
if (${CORE} STREQUAL "COOPERLAKE")
107+
if (${CORE} STREQUAL COOPERLAKE)
108108
if (NOT DYNAMIC_ARCH)
109109
if (NOT NO_AVX512)
110110
execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpversion OUTPUT_VARIABLE GCC_VERSION)

0 commit comments

Comments
 (0)