Skip to content

Commit

Permalink
breakpad: potential linux build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qaisjp committed May 20, 2019
1 parent db33880 commit 764ddb7
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions vendor/google-breakpad/premake5.lua
Expand Up @@ -24,6 +24,19 @@ project "breakpad"
"src/third_party/protobuf/protobuf/src/**.c"
}

-- Ignore tests
excludes(os.matchfiles("**/*_unittest.cc"))
excludes(os.matchfiles("**/*_test.cc"))
excludes(os.matchfiles("**/*_selftest.cc"))

excludes {
"src/client/linux/sender/google_crash_report_sender.cc",
"src/common/linux/tests/**.cc",
"src/client/mac/tests/**",
"src/client/mac/handler/testcases/**",
"src/common/stabs_reader.cc"
}

filter "system:linux"
files {
"src/client/linux/**.cc",
Expand All @@ -44,19 +57,6 @@ project "breakpad"
filter "system:macosx"
includedirs { "src/client/apple/Framework", "src/common/mac" }

-- Ignore tests
excludes(os.matchfiles("**/*_unittest.cc"))
excludes(os.matchfiles("**/*_test.cc"))
excludes(os.matchfiles("**/*_selftest.cc"))

excludes {
"src/client/linux/sender/google_crash_report_sender.cc",
"src/common/linux/tests/**.cc",
"src/client/mac/tests/**",
"src/client/mac/handler/testcases/**",
"src/common/stabs_reader.cc"
}

--[[filter "system:windows"
files {
"src/client/windows/**.cc",
Expand Down

0 comments on commit 764ddb7

Please sign in to comment.