0.10.0: basename() usage
Status: Beta
Brought to you by:
irenee_hottier
VERSION: 0.10.0
I tried to compile rapidotest on Cygwin. Everything worked fine except the usage of the "basename()" function, provided as GNU extension in "string.h". To make "basename()" more platform independent, you have the following possibilities:
1. Add a static "basename()" method to your File class (where it is missing).
2. Use POSIX header <libgen.h> that provides "basename()" , "dirname()" for UNIX platforms (and is support even in Cygwin).