~osomon/pyexiv2/pyexiv2-0.3

« back to all changes in this revision

Viewing changes to src/SConscript

  • Committer: Olivier Tilloy
  • Date: 2008-04-19 11:59:35 UTC
  • Revision ID: olivier@tilloy.net-20080419115935-nl0it4bi0ze8vyol
Refactor the structure of the exiv2 wrapper, retrieve more data for an EXIF tag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
env.Append(LIBS=libs)
16
16
 
17
17
# Build shared library libpyexiv2
18
 
cpp_sources = ['libpyexiv2.cpp', 'libpyexiv2_wrapper.cpp']
19
 
libpyexiv2 = env.SharedLibrary('libpyexiv2', cpp_sources)
 
18
cpp_sources = ['exiv2wrapper.cpp', 'exiv2wrapper_python.cpp']
 
19
libpyexiv2 = env.SharedLibrary('exiv2python', cpp_sources)
20
20
 
21
21
# Install the shared library and the Python module, invoked using
22
22
# 'scons install'. If DESTDIR is specified on the command line when invoking