xlsxio
xlsxio copied to clipboard
XLSX I/O - C library for reading and writing .xlsx files
Hello ,I use README.md xlsxio_write example code create xlsx file mac os numbers can't open. Libreoffice open is ok. I think may be minizip version is too new.
I've been using xlsxio for a while, but I'm having a little trouble: After writing to excel, I need to set the font name, size, underline or bold according to...
Added conanfile.py for building as Conan package, with linked dependencies It is good idea to push xlsxio to center.conan.io in future as Conan package
It looks like there is a bug because EXPAT_INCLUDE_DIR is set, but EXPAT_INCLUDE_DIRS is used. So expat paths were not visible while make running. Fixing name helped.
Dear brechtsanders: when using yours projects, the cell value actually is 2013/3/24, but after transferring into csv file , the value becames an integer value "41357",the project version is xlsxio-0.2.8,...
Hey! Please provide a CMake package config file for easier pickup of your library. Resolving this issue would help a lot for picking the library up, because currently one has...
This is my CMakeList. ```cmake cmake_minimum_required(VERSION 3.20) project(easyexcel C) set(CMAKE_C_STANDARD 99) find_package(PkgConfig) set(ENV{PKG_CONFIG_PATH} /usr/local/lib/pkgconfig) pkg_check_modules(XLSXIO_READ REQUIRED libxlsxio_read) message(XLSXIO_READ_INCLUDE_DIRS: ${XLSXIO_READ_INCLUDE_DIRS}) message(XLSXIO_READ_LIBRARIES: ${XLSXIO_READ_LIBRARIES}) include_directories(${XLSXIO_READ_INCLUDE_DIRS}) link_directories(${XLSXIO_READ_LIBRARIES}) add_executable(${PROJECT_NAME} main.c) target_link_libraries(${PROJECT_NAME} xlsxio_read xlsxio_write) ``` This...
Add GObject Introspection support to generate .gir file to support multi-program language https://gi.readthedocs.io/en/latest/index.html