/libtunepimp-0.5.3/win32/wv/SConscript
#! | 18 lines | 14 code | 4 blank | 0 comment | 0 complexity | 8c36c2ac5fc73c275e65bdea6a1d24d1 MD5 | raw file
Possible License(s): LGPL-2.1, LGPL-3.0, GPL-2.0, LGPL-2.0
1Import('env')
2
3sources = [
4 '#../plugins/wv/wv.cpp',
5 '#../plugins/wv/wvfile.cpp',
6 '#../plugins/wv/wvproperties.cpp',
7 'wv.def',
8 ]
9
10libs = [
11 'libmusicbrainz',
12 'pluginsupport',
13 'utf8',
14 'taglib',
15 ]
16
17env.SharedLibrary('wv', sources, LIBS = libs, SHLIBSUFFIX = '.tpp', no_import_lib = 1)
18