Skip to content
Snippets Groups Projects
Commit 28bff2cd authored by brad kittenbrink's avatar brad kittenbrink
Browse files

Fix for mac build failing to find google_breakpad client libraries.

parent 168fbc9b
No related branches found
No related tags found
No related merge requests found
...@@ -6,9 +6,14 @@ if (STANDALONE) ...@@ -6,9 +6,14 @@ if (STANDALONE)
# *TODO - implement this include(FindGoogleBreakpad) # *TODO - implement this include(FindGoogleBreakpad)
else (STANDALONE) else (STANDALONE)
use_prebuilt_binary(google_breakpad) use_prebuilt_binary(google_breakpad)
set(BREAKPAD_EXCEPTION_HANDLER_LIBRARIES exception_handler crash_generation_client common) if (DARWIN)
set(BREAKPAD_EXCEPTION_HANDLER_LIBRARIES exception_handler)
endif (DARWIN)
if (LINUX) if (LINUX)
set(BREAKPAD_EXCEPTION_HANDLER_LIBRARIES breakpad_client) set(BREAKPAD_EXCEPTION_HANDLER_LIBRARIES breakpad_client)
endif (LINUX) endif (LINUX)
if (WINDOWS)
set(BREAKPAD_EXCEPTION_HANDLER_LIBRARIES exception_handler crash_generation_client common)
endif (WINDOWS)
endif (STANDALONE) endif (STANDALONE)
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