config.w32 880 B

12345678910111213141516
  1. // vim:ft=javascript
  2. ARG_WITH("xlswriter", "xlswriter support", "no");
  3. if (PHP_XLSWRITER != "no") {
  4. EXTENSION("xlswriter", "xls_writer.c")
  5. ADD_FLAG("CFLAGS_XLSWRITER", "/I " + configure_module_dirname);
  6. ADD_SOURCES(configure_module_dirname + "\\library\\third_party\\minizip", "ioapi.c iowin32.c miniunz.c minizip.c mztools.c unzip.c zip.c", "xlswriter");
  7. ADD_SOURCES(configure_module_dirname + "\\library\\third_party\\tmpfileplus", "tmpfileplus.c", "xlswriter");
  8. ADD_SOURCES(configure_module_dirname + "\\library\\src", "app.c chart.c content_types.c core.c custom.c drawing.c format.c hash_table.c packager.c relationships.c shared_strings.c styles.c theme.c utility.c workbook.c worksheet.c xmlwriter.c", "xlswriter");
  9. ADD_SOURCES(configure_module_dirname + "\\kernel", "common.c resource.c exception.c excel.c write.c format.c", "xlswriter");
  10. }