diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-05-28 05:23:23 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-05-28 05:23:23 -0700 |
commit | 712bc9041e3470920d0db6a05e5b0af85d1b78e2 (patch) | |
tree | 255beeeebd6482594719ee17eaba130d21e25456 | |
parent | 506de96842099ad1bdab2f4c70293ee4cce99aa5 (diff) | |
parent | e9dd4ca2fa189d06c92518b57a40cdb0962ee011 (diff) |
Merge pull request #448 from LCID-Fire/incoming
Some extension to SCons testcase.
-rw-r--r-- | tests/scons/SConstruct | 4 | ||||
-rw-r--r-- | tests/scons/other.c | 0 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/scons/SConstruct b/tests/scons/SConstruct index c9472c55..facdff0a 100644 --- a/tests/scons/SConstruct +++ b/tests/scons/SConstruct @@ -1,5 +1,5 @@ env = Environment() env.Tool('emscripten') -env.Append(CPPFLAGS='-std=c++11') -env.Program('scons_integration', 'integration.cpp') +env.Append(CXXFLAGS='-std=c++11') +env.Program('scons_integration', ['integration.cpp', 'other.c']) diff --git a/tests/scons/other.c b/tests/scons/other.c new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/tests/scons/other.c |