Commit 0b55a059 authored by Greg Ward's avatar Greg Ward

Revised docstring so 'sources' isn't necessarily all C/C++ files (to

accomodate SWIG interface files, resource files, etc.).
parent ae6b2254
......@@ -31,9 +31,11 @@ class Extension:
the full name of the extension, including any packages -- ie.
*not* a filename or pathname, but Python dotted name
sources : [string]
list of C/C++ source filenames, relative to the distribution
root (where the setup script lives), in Unix form
(slash-separated) for portability
list of source filenames, relative to the distribution root
(where the setup script lives), in Unix form (slash-separated)
for portability. Source files may be C, C++, SWIG (.i),
platform-specific resource files, or whatever else is recognized
by the "build_ext" command as source for a Python extension.
include_dirs : [string]
list of directories to search for C/C++ header files (in Unix
form for portability)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment