Skip to content

Commit 98b6d74

Browse files
adding avprofile application in SCons
1 parent d3aa6e2 commit 98b6d74

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

app/SConscript

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,22 @@ avplayer = env.Program(
8686
]
8787
)
8888

89+
90+
avprofiles = env.Program(
91+
'avprofiles',
92+
Glob( 'presetChecker/*.cpp' ),
93+
LIBS = [
94+
sAvTranscoder,
95+
'avutil',
96+
'avformat',
97+
'avcodec',
98+
'swscale'
99+
],
100+
CXXFLAGS = [
101+
'-std=c++0x'
102+
],
103+
)
104+
89105
env.Depends( avmeta, sAvTranscoder )
90106
env.Depends( audioRewrapper, sAvTranscoder )
91107

0 commit comments

Comments
 (0)