Lines Matching full:path
94 "path to the SWIG executable"),
149 # etc.) are in the include search path.
160 self.include_dirs.append(os.path.join(sys.exec_prefix, 'include'))
164 self.include_dirs.extend(py_include.split(os.path.pathsep))
167 plat_py_include.split(os.path.pathsep))
193 self.library_dirs.append(os.path.join(sys.exec_prefix, 'libs'))
195 self.library_dirs.append(os.path.join(sys.base_exec_prefix, 'libs'))
197 self.build_temp = os.path.join(self.build_temp, "Debug")
199 self.build_temp = os.path.join(self.build_temp, "Release")
203 self.include_dirs.append(os.path.dirname(get_config_h_filename()))
214 new_lib = os.path.join(sys.exec_prefix, 'PCbuild')
216 new_lib = os.path.join(new_lib, suffix)
222 if sys.executable.startswith(os.path.join(sys.exec_prefix, "bin")):
224 self.library_dirs.append(os.path.join(sys.prefix, "lib",
264 user_include = os.path.join(USER_BASE, "include")
265 user_lib = os.path.join(USER_BASE, "lib")
266 if os.path.isdir(user_include):
268 if os.path.isdir(user_lib):
297 # directory where we put them is in the library search path for
587 (base, ext) = os.path.splitext(source)
618 just "swig" -- it should be in the PATH. Tries a bit harder on
626 # if not, act like Unix and assume it's in the PATH.
628 fn = os.path.join("c:\\swig%s" % vers, "swig.exe")
629 if os.path.isfile(fn):
641 """Returns the path of the filename for a given extension.
653 # build_dir/package/path/filename
654 filename = os.path.join(*modpath[:-1]+[filename])
655 return os.path.join(self.build_lib, filename)
661 package_dir = os.path.abspath(build_py.get_package_dir(package))
665 return os.path.join(package_dir, filename)
684 return os.path.join(*ext_path) + ext_suffix