In this project I hope to write a small program which can solve (simple) sudokus, and learn about C++ and Object-Oriented Programming in the process.
1. Installing libcwd
- #
apt install autoconf autoconf-archive automake libtool-bin libboost-all-devinstall needed stuff in case you don't have it yet - $
git clone https://github.com/CarloWood/libcwd.gitto download - $
./autogen.shto generate needed files
You might get an error, read it, and apply your new knowledge (you may need to re-run the previous step) - Follow instructions
- $
maketo compile libcwd - #
make installinstall where you want it with (additional) flags/options
2. Installing this project
- $
git clone https://github.com/FeniksComputerClub/sudoku.gitto git this project - $
cd sudokuto go into the new directory - $
./autogen.shto generate needed files - $
mkdir ../sudoku-objdir && cd ../sudoku-objdir - $
../sudoku/configure --enable-maintainter-modeto configure the makefile (and other stuff) - $
makecompile the project
Compiling with G++ 4.9.2 standard: C++14