Skip to content

Commit

Permalink
Install dbgcore.dll if exist
Browse files Browse the repository at this point in the history
It seems to be required for the Win10 SDK version of dbghelp.dll
  • Loading branch information
alvinhochun committed Feb 14, 2018
1 parent 3b768a2 commit 1d558ab
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/mgwhelp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,11 @@ if (WINDBG_FOUND)
"${WINDBG_DIR}/symsrv.yes"
DESTINATION bin
)
if (EXISTS "${WINDBG_DIR}/dbgcore.dll")
install (
FILES
"${WINDBG_DIR}/dbgcore.dll"
DESTINATION bin
)
endif ()
endif ()

0 comments on commit 1d558ab

Please sign in to comment.