4Suite API Documentation

Module Ft.Lib.DistExt.BuildExt

Classes:
Functions:

Classes

class BuildExt(distutils.command.build_ext.build_ext)

Methods

build_extension(self, ext)
prep_build(self, ext)

Methods inherited from class distutils.command.build_ext.build_ext

build_extensions, check_extensions_list, finalize_options, find_swig, get_export_symbols, get_ext_filename, get_ext_fullname, get_libraries, get_outputs, initialize_options, run, swig_sources

Methods inherited from class distutils.cmd.Command

__getattr__, __init__, announce, copy_file, copy_tree, debug_print, dump_options, ensure_dirname, ensure_filename, ensure_finalized, ensure_string, ensure_string_list, execute, get_command_name, get_finalized_command, get_sub_commands, make_archive, make_file, mkpath, move_file, reinitialize_command, run_command, set_undefined_options, spawn, warn

Fields

command_name = 'build_ext'

Fields

Fields

Functions

newer(source, target)
Return true if 'source' exists and is more recently modified than 'target', or if 'source' exists and 'target' doesn't. Return false if both exist and 'target' is the same age or younger than 'source'. Raise DistutilsFileError if 'source' does not exist.
newer_group(sources, target, missing='error')
Return true if 'target' is out-of-date with respect to any file listed in 'sources'. In other words, if 'target' exists and is newer than every file in 'sources', return false; otherwise return true. 'missing' controls what we do when a source file is missing; the default ("error") is to blow up with an OSError from inside 'stat()'; if it is "ignore", we silently drop any missing source files; if it is "newer", any missing source files make us assume that 'target' is out-of-date (this is handy in "dry-run" mode: it'll make you pretend to carry out commands that wouldn't work because inputs are missing, but that doesn't matter because you're not actually going to run the commands).