Skip to content

Commit 57fb6a1

Browse files
committed
better breakpad linux fix
addendum to 764ddb7 that commit actually broke mac too
1 parent 764ddb7 commit 57fb6a1

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

vendor/google-breakpad/premake5.lua

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,6 @@ project "breakpad"
2424
"src/third_party/protobuf/protobuf/src/**.c"
2525
}
2626

27-
-- Ignore tests
28-
excludes(os.matchfiles("**/*_unittest.cc"))
29-
excludes(os.matchfiles("**/*_test.cc"))
30-
excludes(os.matchfiles("**/*_selftest.cc"))
31-
32-
excludes {
33-
"src/client/linux/sender/google_crash_report_sender.cc",
34-
"src/common/linux/tests/**.cc",
35-
"src/client/mac/tests/**",
36-
"src/client/mac/handler/testcases/**",
37-
"src/common/stabs_reader.cc"
38-
}
39-
4027
filter "system:linux"
4128
files {
4229
"src/client/linux/**.cc",
@@ -57,6 +44,20 @@ project "breakpad"
5744
filter "system:macosx"
5845
includedirs { "src/client/apple/Framework", "src/common/mac" }
5946

47+
filter {}
48+
-- Ignore tests
49+
excludes(os.matchfiles("**/*_unittest.cc"))
50+
excludes(os.matchfiles("**/*_test.cc"))
51+
excludes(os.matchfiles("**/*_selftest.cc"))
52+
53+
excludes {
54+
"src/client/linux/sender/google_crash_report_sender.cc",
55+
"src/common/linux/tests/**.cc",
56+
"src/client/mac/tests/**",
57+
"src/client/mac/handler/testcases/**",
58+
"src/common/stabs_reader.cc"
59+
}
60+
6061
--[[filter "system:windows"
6162
files {
6263
"src/client/windows/**.cc",

0 commit comments

Comments
 (0)