aboutsummaryrefslogtreecommitdiffstats
path: root/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 /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 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 5 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
new file mode 100644
index 0000000..b8628f7
--- /dev/null
+++ b/SConstruct
@@ -0,0 +1,5 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
+BuildDir('build', 'src', duplicate=0)
+SConscript('build/SConscript')