Skip to content
Snippets Groups Projects
Commit 0bab0b3e authored by Lars Bilke's avatar Lars Bilke
Browse files

Dumpbin is required on Windows when packaging.

parent 294ed508
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,11 @@ FIND_PACKAGE(GitHub)
# Find bash itself ...
FIND_PROGRAM(BASH_TOOL_PATH bash
HINTS ${GITHUB_BIN_DIR} DOC "The bash executable")
# Dumpbin is a windows dependency analaysis tool required for packaging
IF(WIN32 AND OGS_PACKAGING)
FIND_PROGRAM(DUMPBIN_TOOL_PATH dumpbin DOC "Windows dependency analysis tool" REQUIRED)
ENDIF()
######################
### Find libraries ###
######################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment