Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/warn_python_launcher
/
.
/
tests
/
scons
/
SConstruct
blob: 47db75add011f2bfdcb4252a2704250d72b8d4cc [
file
] [
log
] [
blame
] [
edit
]
import
os
env
=
Environment
(
toolpath
=[
os
.
environ
.
get
(
'EMSCRIPTEN_TOOL_PATH'
)])
env
.
Tool
(
'emscripten'
)
env
.
Append
(
CXXFLAGS
=
'-std=c++11'
)
env
.
Program
(
'scons_integration'
,
[
'integration.cpp'
,
'other.c'
])