Simple data structures implementation in cpp.
- list(double link list), general implementation
Now it support GNUmake and Cmake both, but out-of-source Cmake is more suggested. You can shoose 'Unix Makefiles' or 'MinGW Makefiles' as well.
-
Cmake cmake .. -G "Unix Makefiles" && make all
or cmake .. -G "MinGW Makefiles" && make all Of course, you should in build directory(you should make it first) and use out-of-source building it. -
GNUmake make -f Makefile.GNU all
Enjoy yourself.