Skip to content

Commit

Permalink
common: VPU wrapper dependency moved to vpu/
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Rafael Giani <[email protected]>
  • Loading branch information
dv1 committed Sep 14, 2013
1 parent 2d70671 commit 3f18e4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vpu/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def build(bld):
bld(
features = ['c', 'cshlib'],
includes = ['.', '../..'],
uselib = bld.env['COMMON_USELIB'],
uselib = bld.env['COMMON_USELIB'] + ['FSLVPUWRAPPER'],
use = 'gstfslcommon',
target = 'gstfslvpu',
source = bld.path.ant_glob('*.c') + bld.path.ant_glob('decoder/*.c'),
Expand Down
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def configure(conf):
conf.define('PACKAGE', "gst-fsl")
conf.define('VERSION', "1.0")

conf.env['COMMON_USELIB'] = ['GSTREAMER', 'GSTREAMER_BASE', 'GSTREAMER_VIDEO', 'FSLVPUWRAPPER', 'PTHREAD', 'M']
conf.env['COMMON_USELIB'] = ['GSTREAMER', 'GSTREAMER_BASE', 'GSTREAMER_VIDEO', 'PTHREAD', 'M']


conf.recurse('src/common')
Expand Down

0 comments on commit 3f18e4a

Please sign in to comment.