Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@

MY_SCONS_HELP = """\
SCons rules for compiling and installing pyobjcryst.
SCons build is much faster when run with parallel jobs (-j4).
Usage: scons [target] [var=value]

Targets:
Compile and install the pyobjcryst Python extension.
For faster builds, run with parallel jobs, e.g.:
scons -j4

Usage:
scons [target] [var=value]

module build Python extension module _pyobjcryst.so [default]
install install to default Python package location
develop copy extension module to src/pyobjcryst/ directory
test execute unit tests
Targets:
(default) Build the Python extension module `_pyobjcryst.so` (or `.pyd` on Windows)
dev install extension module into `src/pyobjcryst/` (development mode)
test Run pytest on the package with the installed extension

Build configuration variables:
%s
Expand Down
Loading