aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dependencies.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/dependencies.py b/dependencies.py
index 1855916..2779240 100644
--- a/dependencies.py
+++ b/dependencies.py
@@ -508,7 +508,9 @@ class GMockDependency(Dependency):
for d in ['/usr/src/gmock/src', '/usr/src/gmock']:
if os.path.exists(d):
self.is_found = True
- self.compile_args = ['-I' + d]
+ # Yes, we need both because there are multiple
+ # versions of gmock that do different things.
+ self.compile_args = ['-I/usr/src/gmock', '-I/usr/src/gmock/src']
self.link_args = []
all_src = os.path.join(d, 'gmock-all.cc')
main_src = os.path.join(d, 'gmock_main.cc')