File: SConscript

package info (click to toggle)
skim 1.4.4-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,876 kB
  • ctags: 1,247
  • sloc: cpp: 9,421; python: 1,608; sh: 260; makefile: 68
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")