1091 |
build_ext.finalize_options(self) |
build_ext.finalize_options(self) |
1092 |
if self.with_gdal and include_gdal: |
if self.with_gdal and include_gdal: |
1093 |
self.extensions.append(Extension("Lib.gdalwarp", |
self.extensions.append(Extension("Lib.gdalwarp", |
1094 |
[ext_dir + "/thuban/gdalwarp.cpp", |
[ext_dir + "/thuban/gdalwarp.cpp"], |
|
ext_dir + "/thuban/cpl_mfile.cpp", |
|
|
ext_dir + "/thuban/bmpdataset.cpp"], |
|
1095 |
include_dirs = gdal_cs_params[CS_INCDIRS] + |
include_dirs = gdal_cs_params[CS_INCDIRS] + |
1096 |
[ext_dir + "/thuban/"], |
[ext_dir + "/thuban/"] + |
1097 |
define_macros = gdal_cs_params[CS_DEFS], |
wx_cs_params[CS_INCDIRS], |
1098 |
|
define_macros = gdal_cs_params[CS_DEFS] + |
1099 |
|
wx_cs_params[CS_DEFS], |
1100 |
library_dirs = gdal_cs_params[CS_LIBDIRS], |
library_dirs = gdal_cs_params[CS_LIBDIRS], |
1101 |
libraries = gdal_cs_params[CS_LIBS])) |
libraries = gdal_cs_params[CS_LIBS])) |
1102 |
|
|