Skip to content
Snippets Groups Projects
Commit 066b1c56 authored by Sreekanth Arikatla's avatar Sreekanth Arikatla
Browse files

Merge branch 'fixg3ligBuild' into 'master'

BUG: Check DbgHelp library only on windows

See merge request !266
parents c5987d2d d6102ec6
No related branches found
No related tags found
1 merge request!266BUG: Check DbgHelp library only on windows
Pipeline #120940 running
...@@ -3,13 +3,12 @@ ...@@ -3,13 +3,12 @@
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------
if(WIN32) if(WIN32)
find_library(DbgHelp_LIBRARY NAMES DbgHelp) find_library(DbgHelp_LIBRARY NAMES DbgHelp)
if(NOT DbgHelp_LIBRARY)
message(FATAL_ERROR "DbgHelp library not found")
endif()
endif() endif()
if(NOT DbgHelp_LIBRARY)
message(FATAL_ERROR "DbgHelp library not found")
endif()
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------
# Find path # Find path
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------
......
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