blob: ff2d08535aa6601f3f83730ff072ecc6f00288af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# Copyright 2005 Max Howell <[email protected]>
Import( "*" )
myenv=env.Copy()
## Additional paths for compiling the source files
## Always add '../' (top-level directory) because moc makes code that needs it
KDEaddpaths( ['./', '../', '../../'], myenv )
KDEaddlibs( ['tqt-mt', 'tdecore', 'tdeui', 'tdeparts', 'xine'], myenv )
KDEshlib( "libcodeine", Split( "part.cpp xineEngine.cpp videoWindow.cpp toolbar.cpp ../mxcl.library.cpp" ), myenv )
|