blob: c2bce67dc2695361e175132928213f217a4d72bf (
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( ['qt-mt', 'kdecore', 'kdeui', 'kparts', 'xine'], myenv )
KDEshlib( "libcodeine", Split( "part.cpp xineEngine.cpp videoWindow.cpp toolbar.cpp ../mxcl.library.cpp" ), myenv )
|