blob: e45518ef561527f21fc5e5a142131e72b31c7795 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# -*- cmake -*-
include(Prebuilt)
if (STANDALONE)
MESSAGE(FATAL_ERROR "*TODO standalone support for google breakad is unimplemented")
# *TODO - implement this include(FindGoogleBreakpad)
else (STANDALONE)
use_prebuilt_binary(google_breakpad)
set(BREAKPAD_EXCEPTION_HANDLER_LIBRARIES exception_handler)
endif (STANDALONE)
|