cmake: fix typo in handling of STACK_TRACE

This fixes the log output not getting redirected to log file.
This commit is contained in:
redfish 2016-08-19 23:38:44 -04:00
parent 63ba2447e2
commit 2c5e68fb73

View file

@ -50,7 +50,7 @@ endfunction ()
function (enable_stack_trace target)
if(STACK_TRACE)
set_property(TARGET ${target}
APPEND PROPERTY COMPILER_DEFINITIONS "-DSTACK_TRACE")
APPEND PROPERTY COMPILE_DEFINITIONS "STACK_TRACE")
if (STATIC)
set_property(TARGET "${target}"
APPEND PROPERTY LINK_FLAGS "-Wl,--wrap=__cxa_throw")