~ubuntu-branches/ubuntu/maverick/yapgvb/maverick

« back to all changes in this revision

Viewing changes to config_unix.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-07-13 17:22:10 UTC
  • Revision ID: james.westby@ubuntu.com-20060713172210-7u48pea2jrxktglo
Tags: upstream-1.1.1
ImportĀ upstreamĀ versionĀ 1.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
library_dirs = [
 
3
    # Location of Graphviz libraries
 
4
    '/usr/lib/graphviz',   
 
5
    # Location of libboost_python.so
 
6
    '/usr/local/lib',
 
7
]
 
8
 
 
9
include_dirs = [
 
10
    # Location of Graphviz headers
 
11
    '/usr/include/graphviz',
 
12
    # Location of boost/ header directory
 
13
    '/usr/local/include',
 
14
]
 
15
 
 
16
libraries = [   
 
17
    'boost_python',
 
18
    # ------ Graphviz libraries (tested against GV 2.6 shared libraries ... the libraries may differ for 2.8 or static .libs)
 
19
    'graph',
 
20
    'cdt',
 
21
    'gvc',
 
22
]
 
23
 
 
24
extra_link_args = []
 
25
 
 
26
data_files = []