diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2008-04-19 13:59:35 +0200 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2008-04-19 13:59:35 +0200 |
commit | a140f37deeea8ba2c2b4b52a9fc5a456c3d4b86a (patch) | |
tree | 65cdde3a20480f7c70c734d83e900975e06065a6 /src/SConscript | |
parent | a860ef0e6774d276d8851341151931b627eb9146 (diff) | |
download | pyexiv2-a140f37deeea8ba2c2b4b52a9fc5a456c3d4b86a.tar.gz |
Refactor the structure of the exiv2 wrapper, retrieve more data for an EXIF tag.
Diffstat (limited to 'src/SConscript')
-rw-r--r-- | src/SConscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SConscript b/src/SConscript index c2280fa..60e13b6 100644 --- a/src/SConscript +++ b/src/SConscript @@ -15,8 +15,8 @@ libs = ['boost_python', 'exiv2'] env.Append(LIBS=libs) # Build shared library libpyexiv2 -cpp_sources = ['libpyexiv2.cpp', 'libpyexiv2_wrapper.cpp'] -libpyexiv2 = env.SharedLibrary('libpyexiv2', cpp_sources) +cpp_sources = ['exiv2wrapper.cpp', 'exiv2wrapper_python.cpp'] +libpyexiv2 = env.SharedLibrary('exiv2python', cpp_sources) # Install the shared library and the Python module, invoked using # 'scons install'. If DESTDIR is specified on the command line when invoking |