File: SConscript

package info (click to toggle)
sigx 2.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,040 kB
  • ctags: 1,226
  • sloc: cpp: 3,103; ansic: 653; xml: 206; python: 62; makefile: 22
file content (19 lines) | stat: -rw-r--r-- 585 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- python -*-

Import('env')
localenv = env.Clone()

localenv.Prepend(CPPPATH = "#")
localenv.Prepend(LIBPATH = localenv['BUILDDIR'])
localenv.Append(LIBS = localenv['VERSIONED_NAME'])
#localenv.Append(PKG_CONFIG_TOP_BUILD_DIR = "#");
#env.Append(CXXFLAGS = ['-g'])

gtkmm_env = localenv.Clone()
gtkmm_env.ParseConfig('pkg-config --cflags --libs gtkmm-2.4 gthread-2.0')


example_ipresolver = gtkmm_env.Program('example_ipresolver', [ 'ipresolver/main.cpp', 'ipresolver/resolver.cpp', 'ipresolver/thegui.cpp' ])

example_programs = [ example_ipresolver ]
Return('example_programs')