aseprite: how to build @ Linux
Written by marcelpetrick on August 31, 2016
What should i say? I was searching for a more sophisticated GIF-editor to create more smooth animation-loops. Then I saw aseprite. Binaries require “donation”, so why not build it yourself since it is OSS? Sadly there were no clear official hints on how to build on Linux.
Turns out this guide is giving the correct directions:
1 2 |
cmake .. -G "Unix Makefiles" make -j 3 |
Estimate quickly the ‘size’ of the project
Written by marcelpetrick on August 9, 2016
Nothing in comparison to SLOCCount or other tools, but sometimes you just need a ‘value‘ 😉
1 |
find . -regex ".*\.\(h\|cpp\)" | sort | xargs wc -l |
103 ./main.cpp
90 ./map.cpp
35 ./map.h
63 ./mapitem.cpp
29 ./mapitem.h
122 ./mapprocessor.cpp
27 ./mapprocessor.h
79 ./mapreader.cpp
23 ./mapreader.h
571 total
edith 20160819: sort the result before counting for a much nicer appearance 😉