Skip to content

Commit 67e903c

Browse files
disable c++11 application on windows
1 parent 7abda5e commit 67e903c

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

app/SConscript

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -87,21 +87,20 @@ if platform.system() != 'Windows':
8787
'glut',
8888
]
8989
)
90-
91-
92-
avprofiles = env.Program(
93-
'avprofiles',
94-
Glob( 'presetChecker/*.cpp' ),
95-
LIBS = [
96-
sAvTranscoder,
97-
'avutil',
98-
'avformat',
99-
'avcodec',
100-
'swscale'
101-
],
102-
CXXFLAGS = [
103-
'-std=c++0x'
104-
],
90+
91+
avprofiles = env.Program(
92+
'avprofiles',
93+
Glob( 'presetChecker/*.cpp' ),
94+
LIBS = [
95+
sAvTranscoder,
96+
'avutil',
97+
'avformat',
98+
'avcodec',
99+
'swscale'
100+
],
101+
CXXFLAGS = [
102+
'-std=c++0x'
103+
],
105104
)
106105

107106
env.Depends( avmeta, sAvTranscoder )

0 commit comments

Comments
 (0)