File: SConscript

package info (click to toggle)
skim 1.4.5-4
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,904 kB
  • ctags: 1,257
  • sloc: cpp: 9,423; python: 1,608; sh: 329; makefile: 71
file content (18 lines) | stat: -rw-r--r-- 523 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/env python
## This script demonstrates how to build and install
## a complex kde program depending on several
## shared libraries with scons
##
## Thomas Nagy, 2004, 2005
## This file can be reused freely for any project (see COPYING)

Import( 'env' )

kconfig=env.Copy()

kconfig_sources='scim_kconfig_config.cpp'

kconfig.KDEaddpaths_includes( "#/ #/utils" )
kconfig.KDEaddlibs( "qt-mt kdecore kdeui kutils" )

kconfig.SCIMshlib( 'SCIMCONFIGLIB', 'kconfig', kconfig_sources, 1, "#/utils/libscim-kdeutils.la")