Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
32123437
Commit
32123437
authored
Oct 12, 2008
by
shiqian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes the header search path in SConscript and add SConscript to the distribution.
parent
e0865dd9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
Makefile.am
Makefile.am
+1
-0
SConscript
scons/SConscript
+5
-4
No files found.
Makefile.am
View file @
32123437
...
@@ -7,6 +7,7 @@ EXTRA_DIST = \
...
@@ -7,6 +7,7 @@ EXTRA_DIST = \
CHANGES
\
CHANGES
\
CONTRIBUTORS
\
CONTRIBUTORS
\
include/gtest/internal/gtest-type-util.h.pump
\
include/gtest/internal/gtest-type-util.h.pump
\
scons/SConscript
\
scripts/gen_gtest_pred_impl.py
\
scripts/gen_gtest_pred_impl.py
\
src/gtest-all.cc
src/gtest-all.cc
...
...
scons/SConscript
View file @
32123437
...
@@ -96,10 +96,11 @@ __author__ = 'joi@google.com (Joi Sigurdsson)'
...
@@ -96,10 +96,11 @@ __author__ = 'joi@google.com (Joi Sigurdsson)'
Import
(
'env'
)
Import
(
'env'
)
env
=
env
.
Clone
()
env
=
env
.
Clone
()
# Include paths to gtest headers are relative to a directory two above
# Include paths to gtest headers are relative to either the gtest
# the gtest directory itself, and this SConscript file is one
# directory or the 'include' subdirectory of it, and this SConscript
# directory deeper than the gtest directory.
# file is one directory deeper than the gtest directory.
env
.
Prepend
(
CPPPATH
=
[
'../../..'
])
env
.
Prepend
(
CPPPATH
=
[
'..'
,
'../include'
])
# TODO(joi@google.com) Fix the code that causes this warning so that
# 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
# 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