aboutsummaryrefslogtreecommitdiffstats
path: root/src/SConstruct
diff options
context:
space:
mode:
authorOlivier Tilloy <olivier@tilloy.net>2007-01-01 18:56:40 +0100
committerOlivier Tilloy <olivier@tilloy.net>2007-01-01 18:56:40 +0100
commita8c429575b203a03c809277eda31a224b47cdb74 (patch)
tree5f8011d1d97fde14f6251075c1c1e1b7dc17e838 /src/SConstruct
parent9ef6faabcdb9872be4e9f91ae2571e485b3ac9e1 (diff)
downloadpyexiv2-a8c429575b203a03c809277eda31a224b47cdb74.tar.gz
Split the Sconstruct script into two files.
Improved the portability of the build process. Object files and library are now built in a separate directory from the sources.
Diffstat (limited to 'src/SConstruct')
-rw-r--r--src/SConstruct9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/SConstruct b/src/SConstruct
deleted file mode 100644
index 74ad620..0000000
--- a/src/SConstruct
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-
-env = Environment()
-
-env.Append(LIBS = ['boost_python', 'exiv2'])
-env.Append(CPPPATH = ['/usr/include/python2.4'])
-
-env.SharedLibrary('libpyexiv2', ['libpyexiv2.cpp', 'libpyexiv2_wrapper.cpp'])