Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
32123437
Commit
32123437
authored
Oct 12, 2008
by
shiqian
Browse files
Fixes the header search path in SConscript and add SConscript to the distribution.
parent
e0865dd9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
Makefile.am
Makefile.am
+1
-0
scons/SConscript
scons/SConscript
+5
-4
No files found.
Makefile.am
View file @
32123437
...
...
@@ -7,6 +7,7 @@ EXTRA_DIST = \
CHANGES
\
CONTRIBUTORS
\
include/gtest/internal/gtest-type-util.h.pump
\
scons/SConscript
\
scripts/gen_gtest_pred_impl.py
\
src/gtest-all.cc
...
...
scons/SConscript
View file @
32123437
...
...
@@ -96,10 +96,11 @@ __author__ = 'joi@google.com (Joi Sigurdsson)'
Import
(
'env'
)
env
=
env
.
Clone
()
# Include paths to gtest headers are relative to a directory two above
# the gtest directory itself, and this SConscript file is one
# directory deeper than the gtest directory.
env
.
Prepend
(
CPPPATH
=
[
'../../..'
])
# Include paths to gtest headers are relative to either the gtest
# directory or the 'include' subdirectory of it, and this SConscript
# file is one directory deeper than the gtest directory.
env
.
Prepend
(
CPPPATH
=
[
'..'
,
'../include'
])
# TODO(joi@google.com) Fix the code that causes this warning so that
# we see all warnings from the compiler about possible 64-bit porting
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment