BOSS jam game
Sat, 20 April, 2013. Leave a commentSmall script for fixing #include paths
Sat, 06 October, 2012. Leave a commentI've been spending some time trying to port a game written in C++ for windows to BSD/Linux.
One of the things that usually cause issues is that most Windows compilers accept include statements that looks like this
#include path\to\file
But GCC prefers it like so
#include path/to/file
This script will affect all files that are in the current folder and down.
It does a rough search looking for all files ending with .h or .cpp and does an in file replace of all back slashes to front slashes where the line begins with #include
This is in no way tested enough, no warranty given. Make sure to only use it on folders that have a backup of some sort.
My summer project, semest
Sat, 08 September, 2012. Leave a commentI spent most of the summer working on a game with Lukas And Cilia.
We're calling it semest. You can read more about it on the Project page!