Skip to content

Commit

Permalink
Fix incorrect variable use in BoostTestTargets.cmake
Browse files Browse the repository at this point in the history
fixes #8749
  • Loading branch information
gunnarbeutner committed Mar 17, 2015
1 parent c398461 commit 1fe24cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third-party/cmake/BoostTestTargets.cmake
Expand Up @@ -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")
Expand Down

0 comments on commit 1fe24cd

Please sign in to comment.