A C++ GUI-based tool for managing chefkoch.de recipes.
Before compiling make sure libcurl is installed:
Linux: (run as root or via sudo)
apt-get install libcurl3
Windows:
I'll check this later
HeadCooker depents on QT5 so make sure QT5 is installed:
Linux: (run as root or via sudo)
apt-get install qt5-default qt5-qmake
Windows:
Check http://www.qt.io/download/
SQLite is required for storing the recipes on your local computer.
Linux: (run as root or via sudo)
apt-get install libsqlite3-dev
Windows:
I'll check this later...
Run following in your HeadCooker directory:
mkdir build
cd build
qmake ..
make
You can now run HeadCooker via ./headcooker
in your build directory
This credit goes to Jan Düpmeier for part of his project "easy json", thanks dude.