From 3964f7676be46035f98c8cd3478bfceeedcb4b63 Mon Sep 17 00:00:00 2001 From: Username404 <charl.langouste@gmail.com> Date: Sat, 20 Mar 2021 21:25:14 +0100 Subject: [PATCH] Use a ${} syntax for an if statement in CMakeLists.txt. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1fdb977..eab4984 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ if((${CMAKE_CXX_COMPILER_ID} STREQUAL GNU) OR (${CMAKE_CXX_COMPILER_ID} STREQUAL set(CMAKE_CXX_FLAGS "-flto ${CMAKE_CXX_FLAGS} -fpie -pipe -fstack-protector-strong -fstack-clash-protection") include(CheckCXXCompilerFlag) CHECK_CXX_COMPILER_FLAG("-fcf-protection" CF_PROTECTION_SUPPORTED) - if (CF_PROTECTION_SUPPORTED) + if (${CF_PROTECTION_SUPPORTED}) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fcf-protection") endif() endif()