dimitrisPs / csvworker

Small C++ library for working with csv files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CSV worker

by Vladimir Adamskiy (@vadamsky)

CSV worker is a small C++ library for working with csv files. The alpha version supports the standard syntax only (with a comma as delimiters).

To install the class as a library, follow the commands listed bellow in linux.

  • navigate to the project's folder and make a build directory
mkdir build
cd build
  • configure the CMake
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local ..
  • make it and install it as a static lib under /usr/local/lib/git_downloads
make
sudo make install

About

Small C++ library for working with csv files.

License:MIT License


Languages

Language:C++ 86.9%Language:Makefile 11.0%Language:CMake 2.2%