Fix gmock when compiling from source on Debian derivatives.

pull/39/merge
Jussi Pakkanen 10 years ago
parent e40eec4b85
commit db81b31070
  1. 4
      dependencies.py

@ -508,7 +508,9 @@ class GMockDependency(Dependency):
for d in ['/usr/src/gmock/src', '/usr/src/gmock']: for d in ['/usr/src/gmock/src', '/usr/src/gmock']:
if os.path.exists(d): if os.path.exists(d):
self.is_found = True 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 = [] self.link_args = []
all_src = os.path.join(d, 'gmock-all.cc') all_src = os.path.join(d, 'gmock-all.cc')
main_src = os.path.join(d, 'gmock_main.cc') main_src = os.path.join(d, 'gmock_main.cc')

Loading…
Cancel
Save