diff options
author | Oz Linden <oz@lindenlab.com> | 2014-04-22 16:03:35 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2014-04-22 16:03:35 -0400 |
commit | d00d37d23b68037fed8eeeffe21a87f7597086c3 (patch) | |
tree | 2ce3ca6ce4038ab967277ebba1ca4b8a599c50e5 /indra/cmake/GoogleBreakpad.cmake | |
parent | 6c8bddca3d5a790934535fdd6f176e28d181d76a (diff) | |
parent | 776aadf4ef65681084268c3866058172c89b4259 (diff) |
merge changes for OPEN-199
Diffstat (limited to 'indra/cmake/GoogleBreakpad.cmake')
-rwxr-xr-x | indra/cmake/GoogleBreakpad.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/cmake/GoogleBreakpad.cmake b/indra/cmake/GoogleBreakpad.cmake index 7f9ba4ea8e..829e1ac08a 100755 --- a/indra/cmake/GoogleBreakpad.cmake +++ b/indra/cmake/GoogleBreakpad.cmake @@ -1,10 +1,10 @@ # -*- cmake -*- include(Prebuilt) -if (STANDALONE) +if (USESYSTEMLIBS) set(BREAKPAD_EXCEPTION_HANDLER_FIND_REQUIRED ON) include(FindGoogleBreakpad) -else (STANDALONE) +else (USESYSTEMLIBS) use_prebuilt_binary(google_breakpad) if (DARWIN) set(BREAKPAD_EXCEPTION_HANDLER_LIBRARIES exception_handler) @@ -18,5 +18,5 @@ else (STANDALONE) # yes, this does look dumb, no, it's not incorrect # set(BREAKPAD_INCLUDE_DIRECTORIES "${LIBS_PREBUILT_DIR}/include/google_breakpad" "${LIBS_PREBUILT_DIR}/include/google_breakpad/google_breakpad") -endif (STANDALONE) +endif (USESYSTEMLIBS) |