No description
Find a file
2018-02-15 07:59:58 -06:00
src Start implementation of SQLite 2018-02-13 19:32:08 -06:00
.gitignore Add xml struct to store data in 2018-02-07 21:59:00 -06:00
CMakeLists.txt Start implementation of SQLite 2018-02-13 19:32:08 -06:00
configure Add configure script and manual setup instructions 2018-02-15 07:59:58 -06:00
Makefile Fix Makefile for libxml2 2018-02-08 22:19:46 -06:00
README.md Add configure script and manual setup instructions 2018-02-15 07:59:58 -06:00

Feader Library

This repo houses the library behind Feader. The idea behind the project is to separate the logic for retrieving, parsing, and storing RSS feed elements from the display, so that interface used to access the data can be independent from the logic, therefore allowing much easier cross-platform development.

Configuring the Environment

Ubuntu

Install the following packages

cmake libcurl3-openssl-dev libxml2-dev libsqlite3-dev

OR run the configure script:

./configure

Windows

WIP

Building

Clone the repo, then run the following:

mkdir build
cd build
cmake ..
make
./Feader https://wbrawner.com/feed.xml

Todo:

[ ] Write tests [ ] Write Android client [ ] Write Windows 10 client OR Java client [ ] Write GTK client (if not Java client) [ ] Write Mac client (if not Java client)