aboutsummaryrefslogtreecommitdiff
path: root/ports/breakpad/CMakeLists.txt
AgeCommit message (Collapse)Author
2021-03-29[breakpad] add support for Android triplets (#16401)Jesse Towner
* [breakpad] add support for Android triplets This changes vcpkg's custom CMakeLists.txt file for Breakpad so that it correctly builds libbreakpad_client for Android. It follows the same source file layout for Android as seen in the ./android/google_breakpad/Android.mk make file. * [breakpad] update control file * [breakpad] update versions * [breakpad] fix for unordered_map in MSVC++ STL and libstdc++ * [breakpad] update versions * [breakpad] fix to install libbreakpad on non-Android platforms * [breakpad] update versions * [breakpad] Read sources list from Android.mk Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2020-12-17[breakpad] Support breakpad_client on Linux & macOS (#15092)Gyusun Yeom
2020-06-17[breakpad] Fix build failure on OSX (#11984)Jack·Boos·Yu
* [breakpad] Fix build failure on OSX * update baseline * Update portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2018-08-08breakpad: Enable building the libbreakpad_client library (#4008)Romain Pokrzywka
* breakpad: Enable building the libbreakpad_client library That's the library that allows creating and uploading .dmp files when a program crashes. Use the same flags and setup as for libbreakpad, just note that this commit changes the installation folder for headers which was previously incorrect: The libbreakpad headers were installed in include/google_breakpad, but the correct path is include/breakpad/google_breakpad, and client headers go into include/breakpad/client/windows. * [breakpad] Install headers one directory higher * [breakpad] Switch to only build static libraries. Disable libbreakpad_client on non-windows due to additional work required.
2018-02-19[libdisasm][breakpad] Initial commit of breakpad. Improvements to libdisasm.Robert Schumacher