-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2043 from bugsnag/release/v6.6.0
Release v6.6.0
- Loading branch information
Showing
108 changed files
with
2,926 additions
and
2,812 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
set(BUGSNAG_VERSION 1.0.1) | ||
add_library( # Specifies the name of the library. | ||
bugsnag-root-detection | ||
# Sets the library as a shared library. | ||
SHARED | ||
# Provides a relative path to your source file(s). | ||
jni/root_detection.c | ||
) | ||
bugsnag-root-detection | ||
# Sets the library as a shared library. | ||
SHARED | ||
# Provides a relative path to your source file(s). | ||
jni/root_detection.c | ||
) | ||
|
||
include_directories(jni) | ||
|
||
set_target_properties(bugsnag-root-detection | ||
PROPERTIES | ||
COMPILE_OPTIONS | ||
-Werror -Wall -pedantic) | ||
set(EXTRA_LINK_FLAGS "-Wl,-z,max-page-size=16384") | ||
|
||
set_target_properties( | ||
bugsnag-root-detection | ||
PROPERTIES | ||
COMPILE_OPTIONS -Werror -Wall -pedantic | ||
LINK_FLAGS "${EXTRA_LINK_FLAGS}" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.