summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorRalf Habacker <ralf.habacker@freenet.de>2015-11-17 16:05:14 +0100
committerRalf Habacker <ralf.habacker@freenet.de>2015-11-24 13:38:44 +0100
commit8a29ea406db9b5060cf1b5cc245f8b9a4a694691 (patch)
tree4db159f3e15375317f53c421c14f15693025309c /cmake
parent5b79b0fac29f4eed262d7010b9b548f31234f8d6 (diff)
Refactor windows backtrace generator to link directly to dbghelp shared library.
Also use SymFromAddr() instead of deprecated SymGetSymFromAddr() as suggested on MSDN; fix some indention issues. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=92721 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/dbus/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/dbus/CMakeLists.txt b/cmake/dbus/CMakeLists.txt
index 17014084..851ec604 100644
--- a/cmake/dbus/CMakeLists.txt
+++ b/cmake/dbus/CMakeLists.txt
@@ -275,7 +275,7 @@ if(WIN32)
if(WINCE)
target_link_libraries(dbus-1 ws2)
else(WINCE)
- target_link_libraries(dbus-1 ws2_32 advapi32 netapi32 iphlpapi)
+ target_link_libraries(dbus-1 ws2_32 advapi32 netapi32 iphlpapi dbghelp)
endif(WINCE)
else(WIN32)
if(DEFINED DBUS_LIBRARY_REVISION)