From 1fe24cd4170826672f0de24ead7c723de3933a1a Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 17 Mar 2015 09:05:40 +0100 Subject: [PATCH] Fix incorrect variable use in BoostTestTargets.cmake fixes #8749 --- third-party/cmake/BoostTestTargets.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/cmake/BoostTestTargets.cmake b/third-party/cmake/BoostTestTargets.cmake index f79f50654..173eb79f2 100644 --- a/third-party/cmake/BoostTestTargets.cmake +++ b/third-party/cmake/BoostTestTargets.cmake @@ -172,7 +172,7 @@ function(add_boost_test _name) endforeach() if(NOT _boostTestTargetsNagged${_name} STREQUAL "${includeType}") - if("includeType" STREQUAL "CONFIGURED") + if("${includeType}" STREQUAL "CONFIGURED") message(STATUS "Test '${_name}' uses the CMake-configurable form of the boost test framework - congrats! (Including File: ${includeFileLoc})") elseif("${includeType}" STREQUAL "INCLUDED") -- 2.40.0